home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 4 / QRZ Ham Radio Callsign Database - Volume 4.iso / files / dsp / 56ktools / dspkgctr.z / dspkgctr / gcc / expr.c < prev    next >
C/C++ Source or Header  |  1992-06-08  |  177KB  |  5,793 lines

  1. /* Convert tree expression to rtl instructions, for GNU compiler.
  2.    Copyright (C) 1988 Free Software Foundation, Inc.
  3.  
  4.     $Id: expr.c,v 1.25 91/11/22 19:42:59 pete Exp $
  5.  
  6. This file is part of GNU CC.
  7.  
  8. GNU CC is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 1, or (at your option)
  11. any later version.
  12.  
  13. GNU CC is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. GNU General Public License for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with GNU CC; see the file COPYING.  If not, write to
  20. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  21.  
  22.  
  23. #include "config.h"
  24. #include "rtl.h"
  25. #include "tree.h"
  26. #include "flags.h"
  27. #if ! defined( _INTELC32_ )
  28. #include "insn-flags.h"
  29. #include "insn-codes.h"
  30. #else
  31. #include "iflags.h"
  32. #include "icodes.h"
  33. #endif
  34. #include "expr.h"
  35. #if ! defined( _INTELC32_ )
  36. #include "insn-config.h"
  37. #else
  38. #include "iconfig.h"
  39. #endif
  40. #include "recog.h"
  41. #include "gvarargs.h"
  42. #if ! defined( _INTELC32_ )
  43. #include "typeclass.h"
  44. #else
  45. #include "typeclas.h"
  46. #endif
  47.  
  48. /* Decide whether a function's arguments should be processed
  49.    from first to last or from last to first.  */
  50.  
  51. #ifdef STACK_GROWS_DOWNWARD
  52. #ifdef PUSH_ROUNDING
  53. #define PUSH_ARGS_REVERSED    /* If it's last to first */
  54. #endif
  55. #endif
  56.  
  57. /* Like STACK_BOUNDARY but in units of bytes, not bits.  */
  58. #define STACK_BYTES (STACK_BOUNDARY / BITS_PER_UNIT)
  59.  
  60. /* If this is nonzero, we do not bother generating VOLATILE
  61.    around volatile memory references, and we are willing to
  62.    output indirect addresses.  If cse is to follow, we reject
  63.    indirect addresses so a useful potential cse is generated;
  64.    if it is used only once, instruction combination will produce
  65.    the same indirect address eventually.  */
  66. int cse_not_expected;
  67.  
  68. /* Nonzero to generate code for all the subroutines within an
  69.    expression before generating the upper levels of the expression.
  70.    Nowadays this is never zero.  */
  71. int do_preexpand_calls = 1;
  72.  
  73. /* Number of units that we should eventually pop off the stack.
  74.    These are the arguments to function calls that have already returned.  */
  75. int pending_stack_adjust;
  76.  
  77. /* Nonzero means stack pops must not be deferred, and deferred stack
  78.    pops must not be output.  It is nonzero inside a function call,
  79.    inside a conditional expression, inside a statement expression,
  80.    and in other cases as well.  */
  81. int inhibit_defer_pop;
  82.  
  83. /* A list of all cleanups which belong to the arguments of
  84.    function calls being expanded by expand_call.  */
  85. static tree cleanups_of_this_call;
  86.  
  87. /* Nonzero means current function may call alloca
  88.    as a subroutine.  (__builtin_alloca does not count.)  */
  89. int may_call_alloca;
  90.  
  91. #if defined( _MSDOS )
  92. void error_with_decl ( tree decl, ... );
  93. #endif
  94.  
  95. rtx store_expr ();
  96. static void store_constructor ();
  97. static rtx store_field ();
  98. static rtx expand_call ();
  99. static void emit_call_1 ();
  100. static rtx prepare_call_address ();
  101. static rtx expand_builtin ();
  102. static rtx compare ();
  103. static rtx compare_constants ();
  104. static rtx compare1 ();
  105. static rtx do_store_flag ();
  106. static void preexpand_calls ();
  107. static rtx expand_increment ();
  108. static void init_queue ();
  109.  
  110. void do_pending_stack_adjust ();
  111.  
  112. /* MOVE_RATIO is the number of move instructions that is better than
  113.    a block move.  */
  114.  
  115. #ifndef MOVE_RATIO
  116. #if defined (HAVE_movstrqi) || defined (HAVE_movstrhi) || defined (HAVE_movstrsi)
  117. #define MOVE_RATIO 2
  118. #else
  119. /* A value of around 6 would minimize code size; infinity would minimize
  120.    execution time.  */
  121. #define MOVE_RATIO 15
  122. #endif
  123. #endif
  124.  
  125. /* Table indexed by tree code giving 1 if the code is for a
  126.    comparison operation, or anything that is most easily
  127.    computed with a conditional branch.
  128.  
  129.    We include tree.def to give it the proper length.
  130.    The contents thus created are irrelevant.
  131.    The real contents are initialized in init_comparisons.  */
  132.  
  133. #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) 0,
  134.  
  135. static char comparison_code[] = {
  136. #include "tree.def"
  137. };
  138. #undef DEFTREECODE
  139.  
  140. /* This is run once per compilation.  */
  141.  
  142. void
  143. init_comparisons ()
  144. {
  145.   comparison_code[(int) EQ_EXPR] = 1;
  146.   comparison_code[(int) NE_EXPR] = 1;
  147.   comparison_code[(int) LT_EXPR] = 1;
  148.   comparison_code[(int) GT_EXPR] = 1;
  149.   comparison_code[(int) LE_EXPR] = 1;
  150.   comparison_code[(int) GE_EXPR] = 1;
  151. }
  152.  
  153. /* This is run at the start of compiling a function.  */
  154.  
  155. void
  156. init_expr ()
  157. {
  158.   init_queue ();
  159.   may_call_alloca = 0;
  160. }
  161.  
  162. /* Manage the queue of increment instructions to be output
  163.    for POSTINCREMENT_EXPR expressions, etc.  */
  164.  
  165. static rtx pending_chain;
  166.  
  167. /* Queue up to increment (or change) VAR later.  BODY says how:
  168.    BODY should be the same thing you would pass to emit_insn
  169.    to increment right away.  It will go to emit_insn later on.
  170.  
  171.    The value is a QUEUED expression to be used in place of VAR
  172.    where you want to guarantee the pre-incrementation value of VAR.  */
  173.  
  174. static rtx
  175. enqueue_insn (var, body)
  176.      rtx var, body;
  177. {
  178.   pending_chain = gen_rtx (QUEUED, GET_MODE (var),
  179.                var, 0, 0, body, pending_chain);
  180.   return pending_chain;
  181. }
  182.  
  183. /* Use protect_from_queue to convert a QUEUED expression
  184.    into something that you can put immediately into an instruction.
  185.    If the queued incrementation has not happened yet,
  186.    protect_from_queue returns the variable itself.
  187.    If the incrementation has happened, protect_from_queue returns a temp
  188.    that contains a copy of the old value of the variable.
  189.  
  190.    Any time an rtx which might possibly be a QUEUED is to be put
  191.    into an instruction, it must be passed through protect_from_queue first.
  192.    QUEUED expressions are not meaningful in instructions.
  193.  
  194.    Do not pass a value through protect_from_queue and then hold
  195.    on to it for a while before putting it in an instruction!
  196.    If the queue is flushed in between, incorrect code will result.  */
  197.  
  198. rtx
  199. protect_from_queue (x, modify)
  200.      register rtx x;
  201.      int modify;
  202. {
  203.   register RTX_CODE code = GET_CODE (x);
  204.   if (code != QUEUED)
  205.     {
  206.       /* A special hack for read access to (MEM (QUEUED ...))
  207.      to facilitate use of autoincrement.
  208.      Make a copy of the contents of the memory location
  209.      rather than a copy of the address.  */
  210.       if (code == MEM && GET_CODE (XEXP (x, 0)) == QUEUED && !modify)
  211.     {
  212.       register rtx y = XEXP (x, 0);
  213.       XEXP (x, 0) = QUEUED_VAR (y);
  214.       if (QUEUED_INSN (y))
  215.         {
  216.           register rtx temp = gen_reg_rtx (GET_MODE (x));
  217.           emit_insn_before (gen_move_insn (temp, x),
  218.                 QUEUED_INSN (y));
  219.           return temp;
  220.         }
  221.       return x;
  222.     }
  223.       /* Otherwise, recursively protect the subexpressions of all
  224.      the kinds of rtx's that can contain a QUEUED.  */
  225.       if (code == MEM)
  226.     XEXP (x, 0) = protect_from_queue (XEXP (x, 0), 0);
  227.       else if (code == PLUS || code == MULT)
  228.     {
  229.       XEXP (x, 0) = protect_from_queue (XEXP (x, 0), 0);
  230.       XEXP (x, 1) = protect_from_queue (XEXP (x, 1), 0);
  231.     }
  232.       return x;
  233.     }
  234.   /* If the increment has not happened, use the variable itself.  */
  235.   if (QUEUED_INSN (x) == 0)
  236.     return QUEUED_VAR (x);
  237.   /* If the increment has happened and a pre-increment copy exists,
  238.      use that copy.  */
  239.   if (QUEUED_COPY (x) != 0)
  240.     return QUEUED_COPY (x);
  241.   /* The increment has happened but we haven't set up a pre-increment copy.
  242.      Set one up now, and use it.  */
  243.   QUEUED_COPY (x) = gen_reg_rtx (GET_MODE (QUEUED_VAR (x)));
  244.   emit_insn_before (gen_move_insn (QUEUED_COPY (x), QUEUED_VAR (x)),
  245.             QUEUED_INSN (x));
  246.   return QUEUED_COPY (x);
  247. }
  248.  
  249. /* Return nonzero if X contains a QUEUED expression:
  250.    if it contains anything that will be altered by a queued increment.
  251.    We handle only combinations of MEM, PLUS, MINUS and MULT operators
  252.    since memory addresses generally contain only those.  */
  253.  
  254. static int
  255. queued_subexp_p (x)
  256.      rtx x;
  257. {
  258.   register enum rtx_code code = GET_CODE (x);
  259.   switch (code)
  260.     {
  261.     case QUEUED:
  262.       return 1;
  263.     case MEM:
  264.       return queued_subexp_p (XEXP (x, 0));
  265.     case MULT:
  266.     case PLUS:
  267.     case MINUS:
  268.       return queued_subexp_p (XEXP (x, 0))
  269.     || queued_subexp_p (XEXP (x, 1));
  270.     }
  271.   return 0;
  272. }
  273.  
  274. /* Perform all the pending incrementations.  */
  275.  
  276. void
  277. emit_queue ()
  278. {
  279.   register rtx p;
  280.   while (p = pending_chain)
  281.     {
  282.       QUEUED_INSN (p) = emit_insn (QUEUED_BODY (p));
  283.       pending_chain = QUEUED_NEXT (p);
  284.     }
  285. }
  286.  
  287. static void
  288. init_queue ()
  289. {
  290.   if (pending_chain)
  291.     abort ();
  292. }
  293.  
  294. /* Copy data from FROM to TO, where the machine modes are not the same.
  295.    Both modes may be integer, or both may be floating.
  296.    UNSIGNEDP should be nonzero if FROM is an unsigned type.
  297.    This causes zero-extension instead of sign-extension.  */
  298.  
  299. void
  300. convert_move (to, from, unsignedp)
  301.      register rtx to, from;
  302.      int unsignedp;
  303. {
  304.   enum machine_mode to_mode = GET_MODE (to);
  305.   enum machine_mode from_mode = GET_MODE (from);
  306.   int to_real = GET_MODE_CLASS (to_mode) == MODE_FLOAT;
  307.   int from_real = GET_MODE_CLASS (from_mode) == MODE_FLOAT;
  308.   int extending = (int) to_mode > (int) from_mode;
  309.  
  310.   to = protect_from_queue (to, 1);
  311.   from = protect_from_queue (from, 0);
  312.  
  313.   if (to_real != from_real)
  314.     abort ();
  315.  
  316.   if (to_mode == from_mode
  317.       || (from_mode == VOIDmode && CONSTANT_P (from)))
  318.     {
  319.       emit_move_insn (to, from);
  320.       return;
  321.     }
  322.  
  323.   if (to_real)
  324.     {
  325. #ifdef HAVE_extendsfdf2
  326.       if (HAVE_extendsfdf2 && extending)
  327.     {
  328.       emit_unop_insn (CODE_FOR_extendsfdf2, to, from, UNKNOWN);
  329.       return;
  330.     }
  331. #endif
  332. #ifdef HAVE_truncdfsf2
  333.       if (HAVE_truncdfsf2 && ! extending)
  334.     {
  335.       emit_unop_insn (CODE_FOR_truncdfsf2, to, from, UNKNOWN);
  336.       return;
  337.     }
  338. #endif
  339.       emit_library_call (gen_rtx (SYMBOL_REF, Pmode, (extending
  340.                               ? "__extendsfdf2"
  341.                               : "__truncdfsf2")), 0,
  342.              GET_MODE (to), 1,
  343.              from,  (extending ? SFmode : DFmode));
  344.       emit_move_insn (to, hard_libcall_value (GET_MODE (to)));
  345.       return;
  346.     }
  347.  
  348.   /* Now both modes are integers.  */
  349.  
  350.   if (to_mode == DImode)
  351.     {
  352.       if (unsignedp)
  353.     {
  354. #ifdef HAVE_zero_extendsidi2
  355.       if (HAVE_zero_extendsidi2 && from_mode == SImode)
  356.         emit_unop_insn (CODE_FOR_zero_extendsidi2, to, from, ZERO_EXTEND);
  357.       else
  358. #endif
  359. #ifdef HAVE_zero_extendpsidi2
  360.       if (HAVE_zero_extendpsidi2 && from_mode == PSImode)
  361.         emit_unop_insn (CODE_FOR_zero_extendpsidi2, to, from, ZERO_EXTEND);
  362.       else
  363. #endif
  364. #ifdef HAVE_zero_extendhidi2
  365.       if (HAVE_zero_extendhidi2 && from_mode == HImode)
  366.         emit_unop_insn (CODE_FOR_zero_extendhidi2, to, from, ZERO_EXTEND);
  367.       else
  368. #endif
  369. #ifdef HAVE_zero_extendqidi2
  370.       if (HAVE_zero_extendqidi2 && from_mode == QImode)
  371.         emit_unop_insn (CODE_FOR_zero_extendqidi2, to, from, ZERO_EXTEND);
  372.       else
  373. #endif
  374. #ifdef HAVE_zero_extendsidi2
  375.       if (HAVE_zero_extendsidi2)
  376.         {
  377.           convert_move (gen_lowpart (SImode, to), from, unsignedp);
  378.           emit_unop_insn (CODE_FOR_zero_extendsidi2, to,
  379.                   gen_lowpart (SImode, to), ZERO_EXTEND);
  380.         }
  381.       else
  382. #endif
  383.         {
  384.           emit_insn (gen_rtx (CLOBBER, VOIDmode, to));
  385.           convert_move (gen_lowpart (SImode, to), from, unsignedp);
  386.           emit_clr_insn (gen_highpart (SImode, to));
  387.         }
  388.     }
  389. #ifdef HAVE_extendsidi2
  390.       else if (HAVE_extendsidi2 && from_mode == SImode)
  391.     emit_unop_insn (CODE_FOR_extendsidi2, to, from, SIGN_EXTEND);
  392. #endif
  393. #ifdef HAVE_extendpsidi2
  394.       else if (HAVE_extendpsidi2 && from_mode == PSImode)
  395.     emit_unop_insn (CODE_FOR_extendpsidi2, to, from, SIGN_EXTEND);
  396. #endif
  397. #ifdef HAVE_extendhidi2
  398.       else if (HAVE_extendhidi2 && from_mode == HImode)
  399.     emit_unop_insn (CODE_FOR_extendhidi2, to, from, SIGN_EXTEND);
  400. #endif
  401. #ifdef HAVE_extendqidi2
  402.       else if (HAVE_extendqidi2 && from_mode == QImode)
  403.     emit_unop_insn (CODE_FOR_extendqidi2, to, from, SIGN_EXTEND);
  404. #endif
  405. #ifdef HAVE_extendsidi2
  406.       else if (HAVE_extendsidi2)
  407.     {
  408.       convert_move (gen_lowpart (SImode, to), from, unsignedp);
  409.       emit_unop_insn (CODE_FOR_extendsidi2, to,
  410.               gen_lowpart (SImode, to), SIGN_EXTEND);
  411.     }
  412. #endif
  413. #ifdef HAVE_slt
  414.       else if (HAVE_slt && insn_operand_mode[(int) CODE_FOR_slt][0] == SImode)
  415.     {
  416.       emit_insn (gen_rtx (CLOBBER, VOIDmode, to));
  417.       convert_move (gen_lowpart (SImode, to), from, unsignedp);
  418.       emit_insn (gen_slt (gen_highpart (SImode, to)));
  419.     }
  420. #endif
  421.       else
  422.     {
  423.       register rtx label = gen_label_rtx ();
  424.  
  425.       emit_insn (gen_rtx (CLOBBER, VOIDmode, to));
  426.       emit_clr_insn (gen_highpart (SImode, to));
  427.       convert_move (gen_lowpart (SImode, to), from, unsignedp);
  428.       emit_cmp_insn (gen_lowpart (SImode, to),
  429.              gen_rtx (CONST_INT, VOIDmode, 0),
  430.              0, 0, 0);
  431.       NO_DEFER_POP;
  432.       emit_jump_insn (gen_bge (label));
  433.       expand_unop (SImode, one_cmpl_optab,
  434.                gen_highpart (SImode, to), gen_highpart (SImode, to),
  435.                1);
  436.       emit_label (label);
  437.       OK_DEFER_POP;
  438.     }
  439.       return;
  440.     }
  441.  
  442.   if (from_mode == DImode)
  443.     {
  444.       convert_move (to, gen_lowpart (SImode, from), 0);
  445.       return;
  446.     }
  447.  
  448.   /* Now follow all the conversions between integers
  449.      no more than a word long.  */
  450.  
  451.   /* For truncation, usually we can just refer to FROM in a narrower mode.  */
  452.   if (GET_MODE_BITSIZE (to_mode) < GET_MODE_BITSIZE (from_mode)
  453.       && TRULY_NOOP_TRUNCATION (GET_MODE_BITSIZE (to_mode),
  454.                 GET_MODE_BITSIZE (from_mode))
  455.       && ((GET_CODE (from) == MEM
  456.        && ! MEM_VOLATILE_P (from)
  457.        && ! mode_dependent_address_p (XEXP (from, 0)))
  458.       || GET_CODE (from) == REG
  459.       || GET_CODE (from) == SUBREG))
  460.     {
  461.       emit_move_insn (to, gen_lowpart (to_mode, from));
  462.       return;
  463.     }
  464.  
  465.   if (to_mode == SImode && from_mode == PSImode)
  466.     {
  467.       if (unsignedp)
  468.     {
  469. #ifdef HAVE_zero_extendpsisi2
  470.       if (HAVE_zero_extendpsisi2)
  471.         emit_unop_insn (CODE_FOR_zero_extendpsisi2, to, from, ZERO_EXTEND);
  472.       else
  473. #endif
  474.         abort ();
  475.     }
  476.       else
  477.     {
  478. #ifdef HAVE_extendpsisi2
  479.       if (HAVE_extendpsisi2)
  480.         emit_unop_insn (CODE_FOR_extendpsisi2, to, from, SIGN_EXTEND);
  481.       else
  482. #endif
  483.         abort ();
  484.     }
  485.       return;
  486.     }
  487.  
  488.   if (to_mode == SImode && from_mode == HImode)
  489.     {
  490.       if (unsignedp)
  491.     {
  492. #ifdef HAVE_zero_extendhisi2
  493.       if (HAVE_zero_extendhisi2)
  494.         emit_unop_insn (CODE_FOR_zero_extendhisi2, to, from, ZERO_EXTEND);
  495.       else
  496. #endif
  497.         abort ();
  498.     }
  499.       else
  500.     {
  501. #ifdef HAVE_extendhisi2
  502.       if (HAVE_extendhisi2)
  503.         emit_unop_insn (CODE_FOR_extendhisi2, to, from, SIGN_EXTEND);
  504.       else
  505. #endif
  506.         abort ();
  507.     }
  508.       return;
  509.     }
  510.  
  511.   if (to_mode == SImode && from_mode == QImode)
  512.     {
  513.       if (unsignedp)
  514.     {
  515. #ifdef HAVE_zero_extendqisi2
  516.       if (HAVE_zero_extendqisi2)
  517.         {
  518.           emit_unop_insn (CODE_FOR_zero_extendqisi2, to, from, ZERO_EXTEND);
  519.           return;
  520.         }
  521. #endif
  522. #if defined (HAVE_zero_extendqihi2) && defined (HAVE_extendhisi2)
  523.       if (HAVE_zero_extendqihi2 && HAVE_extendhisi2)
  524.         {
  525.           register rtx temp = gen_reg_rtx (HImode);
  526.           emit_unop_insn (CODE_FOR_zero_extendqihi2, temp, from, ZERO_EXTEND);
  527.           emit_unop_insn (CODE_FOR_extendhisi2, to, temp, SIGN_EXTEND);
  528.           return;
  529.         }
  530. #endif
  531.     }
  532.       else
  533.     {
  534. #ifdef HAVE_extendqisi2
  535.       if (HAVE_extendqisi2)
  536.         {
  537.           emit_unop_insn (CODE_FOR_extendqisi2, to, from, SIGN_EXTEND);
  538.           return;
  539.         }
  540. #endif
  541. #if defined (HAVE_extendqihi2) && defined (HAVE_extendhisi2)
  542.       if (HAVE_extendqihi2 && HAVE_extendhisi2)
  543.         {
  544.           register rtx temp = gen_reg_rtx (HImode);
  545.           emit_unop_insn (CODE_FOR_extendqihi2, temp, from, SIGN_EXTEND);
  546.           emit_unop_insn (CODE_FOR_extendhisi2, to, temp, SIGN_EXTEND);
  547.           return;
  548.         }
  549. #endif
  550.     }
  551.       abort ();
  552.     }
  553.  
  554.   if (to_mode == HImode && from_mode == QImode)
  555.     {
  556.       if (unsignedp)
  557.     {
  558. #ifdef HAVE_zero_extendqihi2
  559.       if (HAVE_zero_extendqihi2)
  560.         {
  561.           emit_unop_insn (CODE_FOR_zero_extendqihi2, to, from, ZERO_EXTEND);
  562.           return;
  563.         }
  564. #endif
  565.     }
  566.       else
  567.     {
  568. #ifdef HAVE_extendqihi2
  569.       if (HAVE_extendqihi2)
  570.         {
  571.           emit_unop_insn (CODE_FOR_extendqihi2, to, from, SIGN_EXTEND);
  572.           return;
  573.         }
  574. #endif
  575.     }
  576.       abort ();
  577.     }
  578.  
  579.   if (to_mode == HImode && from_mode == PSImode &&
  580.       GET_MODE_BITSIZE (to_mode) > GET_MODE_BITSIZE (from_mode))
  581.     {
  582.       if (unsignedp)
  583.     {
  584. #ifdef HAVE_zero_extendpsihi2
  585.       if (HAVE_zero_extendpsihi2)
  586.         {
  587.           emit_unop_insn (CODE_FOR_zero_extendpsihi2, to, from, ZERO_EXTEND);
  588.           return;
  589.         }
  590. #endif
  591.     }
  592.       else
  593.     {
  594. #ifdef HAVE_extendpsihi2
  595.       if (HAVE_extendpsihi2)
  596.         {
  597.           emit_unop_insn (CODE_FOR_extendpsihi2, to, from, SIGN_EXTEND);
  598.           return;
  599.         }
  600. #endif
  601.     }
  602.       abort ();
  603.     }
  604.  
  605.   if (to_mode == PSImode && from_mode == HImode &&
  606.       GET_MODE_BITSIZE (to_mode) > GET_MODE_BITSIZE (from_mode))
  607.     {
  608.       if (unsignedp)
  609.     {
  610. #ifdef HAVE_zero_extendhipsi2
  611.       if (HAVE_zero_extendhipsi2)
  612.         {
  613.           emit_unop_insn (CODE_FOR_zero_extendhipsi2, to, from, ZERO_EXTEND);
  614.           return;
  615.         }
  616. #endif
  617.     }
  618.       else
  619.     {
  620. #ifdef HAVE_extendhipsi2
  621.       if (HAVE_extendhipsi2)
  622.         {
  623.           emit_unop_insn (CODE_FOR_extendhipsi2, to, from, SIGN_EXTEND);
  624.           return;
  625.         }
  626. #endif
  627.     }
  628.       abort ();
  629.     }
  630.  
  631.   if (to_mode == QImode && from_mode == PSImode &&
  632.       GET_MODE_BITSIZE (to_mode) > GET_MODE_BITSIZE (from_mode))
  633.     {
  634.       if (unsignedp)
  635.     {
  636. #ifdef HAVE_zero_extendpsiqi2    
  637.   if (HAVE_zero_extendpsiqi2)
  638.         {
  639.           emit_unop_insn (CODE_FOR_zero_extendpsiqi2, to, from, ZERO_EXTEND);
  640.           return;
  641.         }
  642. #endif
  643.     }
  644.       else
  645.     {
  646. #ifdef HAVE_extendpsiqi2
  647.       if (HAVE_extendpsiqi2)
  648.         {
  649.           emit_unop_insn (CODE_FOR_extendpsiqi2, to, from, SIGN_EXTEND);
  650.           return;
  651.         }
  652. #endif
  653.     }
  654.       abort ();
  655.     }
  656.  
  657.   if (to_mode == PSImode && from_mode == QImode &&
  658.       GET_MODE_BITSIZE (to_mode) > GET_MODE_BITSIZE (from_mode))
  659.     {
  660.       if (unsignedp)
  661.     {
  662. #ifdef HAVE_zero_extendqipsi2
  663.       if (HAVE_zero_extendqipsi2)
  664.         {
  665.           emit_unop_insn (CODE_FOR_zero_extendqipsi2, to, from, ZERO_EXTEND);
  666.           return;
  667.         }
  668. #endif
  669.     }
  670.       else
  671.     {
  672. #ifdef HAVE_extendqipsi2
  673.       if (HAVE_extendqipsi2)
  674.         {
  675.           emit_unop_insn (CODE_FOR_extendqipsi2, to, from, SIGN_EXTEND);
  676.           return;
  677.         }
  678. #endif
  679.     }
  680.       abort ();
  681.     }
  682.  
  683. #if 0 /* This seems to be redundant with code 100 lines up.  */
  684.  
  685.   /* Now we are truncating an integer to a smaller one.
  686.      If the result is a temporary, we might as well just copy it,
  687.      since only the low-order part of the result needs to be valid
  688.      and it is valid with no change.  */
  689.  
  690.   if (GET_CODE (to) == REG)
  691.     {
  692.       if (GET_CODE (from) == REG)
  693.     {
  694.       emit_move_insn (to, gen_lowpart (GET_MODE (to), from));
  695.       return;
  696.     }
  697.       else if (GET_CODE (from) == SUBREG)
  698.     {
  699.       from = copy_rtx (from);
  700.       /* This is safe since FROM is not more than one word.  */
  701.       PUT_MODE (from, GET_MODE (to));
  702.       emit_move_insn (to, from);
  703.       return;
  704.     }
  705. #ifndef BYTES_BIG_ENDIAN
  706.       else if (GET_CODE (from) == MEM)
  707.     {
  708.       register rtx addr = XEXP (from, 0);
  709.       if (memory_address_p (GET_MODE (to), addr))
  710.         {
  711.           emit_move_insn (to, gen_rtx (MEM, GET_MODE (to), addr));
  712.           return;
  713.         }
  714.     }
  715. #endif /* not BYTES_BIG_ENDIAN */
  716.     }
  717. #endif /* 0 */
  718.  
  719.   if (from_mode == SImode && to_mode == PSImode)
  720.     {
  721. #ifdef HAVE_truncsipsi2
  722.       if (HAVE_truncsipsi2)
  723.     {
  724.       emit_unop_insn (CODE_FOR_truncsipsi2, to, from, UNKNOWN);
  725.       return;
  726.     }
  727. #endif
  728.       abort ();
  729.     }
  730.  
  731.   if (from_mode == SImode && to_mode == HImode)
  732.     {
  733. #ifdef HAVE_truncsihi2
  734.       if (HAVE_truncsihi2)
  735.     {
  736.       emit_unop_insn (CODE_FOR_truncsihi2, to, from, UNKNOWN);
  737.       return;
  738.     }
  739. #endif
  740.       abort ();
  741.     }
  742.  
  743.   if (from_mode == SImode && to_mode == QImode)
  744.     {
  745. #ifdef HAVE_truncsiqi2
  746.       if (HAVE_truncsiqi2)
  747.     {
  748.       emit_unop_insn (CODE_FOR_truncsiqi2, to, from, UNKNOWN);
  749.       return;
  750.     }
  751. #endif
  752.       abort ();
  753.     }
  754.  
  755.   if (from_mode == HImode && to_mode == PSImode)
  756.     {
  757. #ifdef HAVE_trunchipsi2
  758.       if (HAVE_trunchipsi2)
  759.     {
  760.       emit_unop_insn (CODE_FOR_trunchipsi2, to, from, UNKNOWN);
  761.       return;
  762.     }
  763. #endif
  764.       abort ();
  765.     }
  766.  
  767.   if (from_mode == PSImode && to_mode == HImode)
  768.     {
  769. #ifdef HAVE_truncpsihi2
  770.       if (HAVE_truncpsihi2)
  771.     {
  772.       emit_unop_insn (CODE_FOR_truncpsihi2, to, from, UNKNOWN);
  773.       return;
  774.     }
  775. #endif
  776.       abort ();
  777.     }
  778.  
  779.   if (from_mode == QImode && to_mode == PSImode)
  780.     {
  781. #ifdef HAVE_truncqipsi2
  782.       if (HAVE_truncqipsi2)
  783.     {
  784.       emit_unop_insn (CODE_FOR_truncqipsi2, to, from, UNKNOWN);
  785.       return;
  786.     }
  787. #endif
  788.       abort ();
  789.     }
  790.  
  791.   if (from_mode == PSImode && to_mode == QImode)
  792.     {
  793. #ifdef HAVE_truncpsiqi2
  794.       if (HAVE_truncpsiqi2)
  795.     {
  796.       emit_unop_insn (CODE_FOR_truncpsiqi2, to, from, UNKNOWN);
  797.       return;
  798.     }
  799. #endif
  800.       abort ();
  801.     }
  802.  
  803.   if (from_mode == HImode && to_mode == QImode)
  804.     {
  805. #ifdef HAVE_trunchiqi2
  806.       if (HAVE_trunchiqi2)
  807.     {
  808.       emit_unop_insn (CODE_FOR_trunchiqi2, to, from, UNKNOWN);
  809.       return;
  810.     }
  811. #endif
  812.       abort ();
  813.     }
  814.  
  815.   /* Mode combination is not recognized.  */
  816.   abort ();
  817. }
  818.  
  819. /* Return an rtx for a value that would result
  820.    from converting X to mode MODE.
  821.    Both X and MODE may be floating, or both integer.
  822.    UNSIGNEDP is nonzero if X is an unsigned value.
  823.    This can be done by referring to a part of X in place
  824.    or by copying to a new temporary with conversion.  */
  825.  
  826. rtx
  827. convert_to_mode (mode, x, unsignedp)
  828.      enum machine_mode mode;
  829.      rtx x;
  830.      int unsignedp;
  831. {
  832.   register rtx temp;
  833.   if (mode == GET_MODE (x))
  834.     return x;
  835.   if (integer_mode_p (mode)
  836. #if defined( DSP56000 )
  837.       && SYMBOL_REF != GET_CODE ( x )
  838. #endif
  839.       && GET_MODE_SIZE (mode) <= GET_MODE_SIZE (GET_MODE (x))
  840.       && ! (GET_CODE (x) == MEM && MEM_VOLATILE_P (x)))
  841.     return gen_lowpart (mode, x);
  842.   temp = gen_reg_rtx (mode);
  843.   convert_move (temp, x, unsignedp);
  844.   return temp;
  845. }
  846.  
  847. int
  848. integer_mode_p (mode)
  849.      enum machine_mode mode;
  850. {
  851.   return (int) mode > (int) VOIDmode && (int) mode <= (int) TImode;
  852. }
  853.  
  854. /* Generate several move instructions to copy LEN bytes
  855.    from block FROM to block TO.  (These are MEM rtx's with BLKmode).
  856.    The caller must pass FROM and TO
  857.     through protect_from_queue before calling.
  858.    ALIGN (in bytes) is maximum alignment we can assume.  */
  859.  
  860. struct move_by_pieces
  861. {
  862.   rtx to;
  863.   rtx to_addr;
  864.   int autinc_to;
  865.   int explicit_inc_to;
  866.   rtx from;
  867.   rtx from_addr;
  868.   int autinc_from;
  869.   int explicit_inc_from;
  870.   int len;
  871.   int offset;
  872.   int reverse;
  873. };
  874.  
  875. static void move_by_pieces_1 ();
  876. static int move_by_pieces_ninsns ();
  877.  
  878. static void
  879. move_by_pieces (to, from, len, align)
  880.      rtx to, from;
  881.      int len, align;
  882. {
  883.   struct move_by_pieces data;
  884.   rtx to_addr = XEXP (to, 0), from_addr = XEXP (from, 0);
  885.  
  886.   data.offset = 0;
  887.   data.to_addr = to_addr;
  888.   data.from_addr = from_addr;
  889.   data.to = to;
  890.   data.from = from;
  891.   data.autinc_to
  892.     = (GET_CODE (to_addr) == PRE_INC || GET_CODE (to_addr) == PRE_DEC
  893.        || GET_CODE (to_addr) == POST_INC || GET_CODE (to_addr) == POST_DEC);
  894.   data.autinc_from
  895.     = (GET_CODE (from_addr) == PRE_INC || GET_CODE (from_addr) == PRE_DEC
  896.        || GET_CODE (from_addr) == POST_INC
  897.        || GET_CODE (from_addr) == POST_DEC);
  898.  
  899.   data.explicit_inc_from = 0;
  900.   data.explicit_inc_to = 0;
  901.   data.reverse
  902.     = (GET_CODE (to_addr) == PRE_DEC || GET_CODE (to_addr) == POST_DEC);
  903.   if (data.reverse) data.offset = len;
  904.   data.len = len;
  905.  
  906.   /* If copying requires more than two move insns,
  907.      copy addresses to registers (to make displacements shorter)
  908.      and use post-increment if available.  */
  909.   if (!(data.autinc_from && data.autinc_to)
  910.       && move_by_pieces_ninsns (len, align) > 2)
  911.     {
  912. #ifdef HAVE_PRE_DECREMENT
  913.       if (data.reverse && ! data.autinc_from)
  914.     {
  915.       data.from_addr = copy_addr_to_reg (plus_constant (from_addr, len));
  916.       data.autinc_from = 1;
  917.       data.explicit_inc_from = -1;
  918.     }
  919. #endif
  920. #ifdef HAVE_POST_INCREMENT
  921.       if (! data.autinc_from)
  922.     {
  923.       data.from_addr = copy_addr_to_reg (from_addr);
  924.       data.autinc_from = 1;
  925.       data.explicit_inc_from = 1;
  926.     }
  927. #endif
  928.       if (!data.autinc_from && CONSTANT_P (from_addr))
  929.     data.from_addr = copy_addr_to_reg (from_addr);
  930. #ifdef HAVE_PRE_DECREMENT
  931.       if (data.reverse && ! data.autinc_to)
  932.     {
  933.       data.to_addr = copy_addr_to_reg (plus_constant (to_addr, len));
  934.       data.autinc_to = 1;
  935.       data.explicit_inc_to = -1;
  936.     }
  937. #endif
  938. #ifdef HAVE_POST_INCREMENT
  939.       if (! data.reverse && ! data.autinc_to)
  940.     {
  941.       data.to_addr = copy_addr_to_reg (to_addr);
  942.       data.autinc_to = 1;
  943.       data.explicit_inc_to = 1;
  944.     }
  945. #endif
  946.       if (!data.autinc_to && CONSTANT_P (to_addr))
  947.     data.to_addr = copy_addr_to_reg (to_addr);
  948.     }
  949.  
  950. #ifdef STRICT_ALIGNMENT
  951.   if (align > MOVE_MAX || align >= BIGGEST_ALIGNMENT / BITS_PER_UNIT)
  952.     align = MOVE_MAX;
  953. #else
  954.   align = MOVE_MAX;
  955. #endif
  956.  
  957. #ifdef HAVE_movti
  958.   if (HAVE_movti && align >= GET_MODE_SIZE (TImode))
  959.     move_by_pieces_1 (gen_movti, TImode, &data);
  960. #endif
  961. #ifdef HAVE_movdi
  962.   if (HAVE_movdi && align >= GET_MODE_SIZE (DImode))
  963.     move_by_pieces_1 (gen_movdi, DImode, &data);
  964. #endif
  965. #ifdef HAVE_movsi
  966.   if (align >= GET_MODE_SIZE (SImode))
  967.     move_by_pieces_1 (gen_movsi, SImode, &data);
  968. #endif
  969. #ifdef HAVE_movhi
  970.   if (HAVE_movhi && align >= GET_MODE_SIZE (HImode))
  971.     move_by_pieces_1 (gen_movhi, HImode, &data);
  972. #endif
  973. #ifdef HAVE_movqi
  974.   move_by_pieces_1 (gen_movqi, QImode, &data);
  975. #else
  976.   movqi instruction required in machine description
  977. #endif
  978. }
  979.  
  980. /* Return number of insns required to move L bytes by pieces.
  981.    ALIGN (in bytes) is maximum alignment we can assume.  */
  982.  
  983. static int
  984. move_by_pieces_ninsns (l, align)
  985.      unsigned int l;
  986.      int align;
  987. {
  988.   register int n_insns = 0;
  989.  
  990. #ifdef STRICT_ALIGNMENT
  991.   if (align > MOVE_MAX || align >= BIGGEST_ALIGNMENT / BITS_PER_UNIT)
  992.     align = MOVE_MAX;
  993. #else
  994.   align = MOVE_MAX;
  995. #endif
  996.  
  997. #ifdef HAVE_movti
  998.   if (HAVE_movti && align >= GET_MODE_SIZE (TImode))
  999.     n_insns += l / GET_MODE_SIZE (TImode), l %= GET_MODE_SIZE (TImode);
  1000. #endif
  1001. #ifdef HAVE_movdi
  1002.   if (HAVE_movdi && align >= GET_MODE_SIZE (DImode))
  1003.     n_insns += l / GET_MODE_SIZE (DImode), l %= GET_MODE_SIZE (DImode);
  1004. #endif
  1005. #ifdef HAVE_movsi
  1006.   if (HAVE_movsi && align >= GET_MODE_SIZE (SImode))
  1007.     n_insns += l / GET_MODE_SIZE (SImode), l %= GET_MODE_SIZE (SImode);
  1008. #endif
  1009. #ifdef HAVE_movhi
  1010.   if (HAVE_movhi && align >= GET_MODE_SIZE (HImode))
  1011.     n_insns += l / GET_MODE_SIZE (HImode), l %= GET_MODE_SIZE (HImode);
  1012. #endif
  1013.   n_insns += l;
  1014.  
  1015.   return n_insns;
  1016. }
  1017.  
  1018. /* Subroutine of move_by_pieces.  Move as many bytes as appropriate
  1019.    with move instructions for mode MODE.  GENFUN is the gen_... function
  1020.    to make a move insn for that mode.  DATA has all the other info.  */
  1021.  
  1022. static void
  1023. move_by_pieces_1 (genfun, mode, data)
  1024.      rtx (*genfun) ();
  1025.      enum machine_mode mode;
  1026.      struct move_by_pieces *data;
  1027. {
  1028.   register int size = GET_MODE_SIZE (mode);
  1029.   register rtx to1, from1;
  1030.  
  1031.   while (data->len >= size)
  1032.     {
  1033.       if (data->reverse) data->offset -= size;
  1034.  
  1035.       to1 = (data->autinc_to
  1036.          ? gen_rtx (MEM, mode, data->to_addr)
  1037.          : change_address (data->to, mode,
  1038.                    plus_constant (data->to_addr, data->offset)));
  1039.       from1 =
  1040.     (data->autinc_from
  1041.      ? gen_rtx (MEM, mode, data->from_addr)
  1042.      : change_address (data->from, mode,
  1043.                plus_constant (data->from_addr, data->offset)));
  1044.  
  1045. #ifdef HAVE_PRE_DECREMENT
  1046.       if (data->explicit_inc_to < 0)
  1047.     emit_insn (gen_sub2_insn (data->to_addr,
  1048.                   gen_rtx (CONST_INT, VOIDmode, size)));
  1049.       if (data->explicit_inc_from < 0)
  1050.     emit_insn (gen_sub2_insn (data->from_addr,
  1051.                   gen_rtx (CONST_INT, VOIDmode, size)));
  1052. #endif
  1053.  
  1054.       emit_insn ((*genfun) (to1, from1));
  1055. #ifdef HAVE_POST_INCREMENT
  1056.       if (data->explicit_inc_to > 0)
  1057.     emit_insn (gen_add2_insn (data->to_addr,
  1058.                   gen_rtx (CONST_INT, VOIDmode, size)));
  1059.       if (data->explicit_inc_from > 0)
  1060.     emit_insn (gen_add2_insn (data->from_addr,
  1061.                   gen_rtx (CONST_INT, VOIDmode, size)));
  1062. #endif
  1063.  
  1064.       if (! data->reverse) data->offset += size;
  1065.  
  1066.       data->len -= size;
  1067.     }
  1068. }
  1069.  
  1070. /* Emit code to move a block Y to a block X.
  1071.    This may be done with string-move instructions,
  1072.    with multiple scalar move instructions, or with a library call.
  1073.  
  1074.    Both X and Y must be MEM rtx's (perhaps inside VOLATILE)
  1075.    with mode BLKmode.
  1076.    SIZE is an rtx that says how long they are.
  1077.    ALIGN is the maximum alignment we can assume they have,
  1078.    measured in bytes.  */
  1079.  
  1080. static void
  1081. emit_block_move (x, y, size, align)
  1082.      rtx x, y;
  1083.      rtx size;
  1084.      int align;
  1085. {
  1086.   if (GET_MODE (x) != BLKmode)
  1087.     abort ();
  1088.  
  1089.   if (GET_MODE (y) != BLKmode)
  1090.     abort ();
  1091.  
  1092.   x = protect_from_queue (x, 1);
  1093.   y = protect_from_queue (y, 0);
  1094.  
  1095.   if (GET_CODE (x) != MEM)
  1096.     abort ();
  1097.   if (GET_CODE (y) != MEM)
  1098.     abort ();
  1099.   if (size == 0)
  1100.     abort ();
  1101.  
  1102.   if (GET_CODE (size) == CONST_INT
  1103.       && (move_by_pieces_ninsns ((unsigned) INTVAL (size), align)
  1104.       < MOVE_RATIO))
  1105.     move_by_pieces (x, y, INTVAL (size), align);
  1106.   else
  1107.     {
  1108.       /* Try the most limited insn first, because there's no point
  1109.      including more than one in the machine description unless
  1110.      the more limited one has some advantage.  */
  1111. #ifdef HAVE_movstrqi
  1112.       if (HAVE_movstrqi
  1113.       && GET_CODE (size) == CONST_INT
  1114.       && ((unsigned) INTVAL (size)
  1115.           < (1 << (GET_MODE_BITSIZE (QImode) - 1))))
  1116.     {
  1117.       emit_insn (gen_movstrqi (x, y, size,
  1118.                    gen_rtx (CONST_INT, VOIDmode, align)));
  1119.       return;
  1120.     }
  1121. #endif
  1122. #ifdef HAVE_movstrhi
  1123.       if (HAVE_movstrhi
  1124.       && GET_CODE (size) == CONST_INT
  1125.       && ((unsigned) INTVAL (size)
  1126.           < (1 << (GET_MODE_BITSIZE (HImode) - 1))))
  1127.     {
  1128.       emit_insn (gen_movstrhi (x, y, size,
  1129.                    gen_rtx (CONST_INT, VOIDmode, align)));
  1130.       return;
  1131.     }
  1132. #endif
  1133. #ifdef HAVE_movstrsi
  1134.       if (HAVE_movstrsi)
  1135.     {
  1136. #if defined( DSP96000 ) || defined( DSP56000 )
  1137.       rtx fee = gen_rtx (CONST_INT, VOIDmode, align);
  1138.       rtx foo = gen_movstrsi (x, y, size, fee );
  1139.       emit_insn ( foo );
  1140. #else
  1141.       emit_insn (gen_movstrsi (x, y, size,
  1142.                    gen_rtx (CONST_INT, VOIDmode, align)));
  1143. #endif
  1144.       return;
  1145.     }
  1146. #endif
  1147.  
  1148. #ifdef TARGET_MEM_FUNCTIONS
  1149.       emit_library_call (gen_rtx (SYMBOL_REF, Pmode, "memcpy"), 0,
  1150.              VOIDmode, 3, XEXP (x, 0), Pmode,
  1151.              XEXP (y, 0), Pmode,
  1152.              size, Pmode);
  1153. #else
  1154.       emit_library_call (gen_rtx (SYMBOL_REF, Pmode, "bcopy"), 0,
  1155.              VOIDmode, 3, XEXP (y, 0), Pmode,
  1156.              XEXP (x, 0), Pmode,
  1157.              size, Pmode);
  1158. #endif
  1159.     }
  1160. }
  1161.  
  1162. /* Copy all or part of a BLKmode value X into registers starting at REGNO.
  1163.    The number of registers to be filled is NREGS.  */
  1164.  
  1165. static void
  1166. move_block_to_reg (regno, x, nregs)
  1167.      int regno;
  1168.      rtx x;
  1169.      int nregs;
  1170. {
  1171.   int i;
  1172.   if (GET_CODE (x) == CONST_DOUBLE && x != dconst0_rtx)
  1173.     x = force_const_double_mem (x);
  1174.   for (i = 0; i < nregs; i++)
  1175.     {
  1176.       if (GET_CODE (x) == REG)
  1177.     emit_move_insn (gen_rtx (REG, SImode, regno + i),
  1178.             gen_rtx (SUBREG, SImode, x, i));
  1179.       else if (x == dconst0_rtx)
  1180.     emit_move_insn (gen_rtx (REG, SImode, regno + i),
  1181.             const0_rtx);
  1182.       else
  1183.     emit_move_insn (gen_rtx (REG, SImode, regno + i),
  1184.             gen_rtx (MEM, SImode,
  1185.                  memory_address (SImode,
  1186.                          plus_constant (XEXP (x, 0),
  1187.                                 i * GET_MODE_SIZE (SImode)))));
  1188.     }
  1189. }
  1190.  
  1191. /* Copy all or part of a BLKmode value X out of registers starting at REGNO.
  1192.    The number of registers to be filled is NREGS.  */
  1193.  
  1194. void
  1195. move_block_from_reg (regno, x, nregs)
  1196.      int regno;
  1197.      rtx x;
  1198.      int nregs;
  1199. {
  1200.   int i;
  1201.   for (i = 0; i < nregs; i++)
  1202.     {
  1203.       if (GET_CODE (x) == REG)
  1204.     emit_move_insn (gen_rtx (SUBREG, SImode, x, i),
  1205.             gen_rtx (REG, SImode, regno + i));
  1206.       else
  1207.     emit_move_insn (gen_rtx (MEM, SImode,
  1208.                  memory_address (SImode,
  1209.                          plus_constant (XEXP (x, 0),
  1210.                                 i * GET_MODE_SIZE (SImode)))),
  1211.             gen_rtx (REG, SImode, regno + i));
  1212.     }
  1213. }
  1214.  
  1215. /* Mark NREGS consecutive regs, starting at REGNO, as being live now.  */
  1216.  
  1217. static void
  1218. use_regs (regno, nregs)
  1219.      int regno;
  1220.      int nregs;
  1221. {
  1222.   int i;
  1223.   for (i = 0; i < nregs; i++)
  1224.     emit_insn (gen_rtx (USE, VOIDmode, gen_rtx (REG, SImode, regno + i)));
  1225. }
  1226.  
  1227. /* Write zeros through the storage of OBJECT.
  1228.    If OBJECT has BLKmode, SIZE is its length in bytes.  */
  1229.  
  1230. void
  1231. clear_storage (object, size)
  1232.      rtx object;
  1233.      int size;
  1234. {
  1235.   if (GET_MODE (object) == BLKmode)
  1236.     {
  1237. #ifdef TARGET_MEM_FUNCTIONS
  1238.       emit_library_call (gen_rtx (SYMBOL_REF, Pmode, "memset"), 0,
  1239.              VOIDmode, 3,
  1240.              XEXP (object, 0), Pmode, const0_rtx, Pmode,
  1241.              gen_rtx (CONST_INT, VOIDmode, size), Pmode);
  1242. #else
  1243.       emit_library_call (gen_rtx (SYMBOL_REF, Pmode, "bzero"), 0,
  1244.              VOIDmode, 2,
  1245.              XEXP (object, 0), Pmode,
  1246.              gen_rtx (CONST_INT, VOIDmode, size), Pmode);
  1247. #endif
  1248.     }
  1249.   else
  1250.     emit_move_insn (object, const0_rtx);
  1251. }
  1252.  
  1253. /* Generate code to copy Y into X.
  1254.    Both Y and X must have the same mode, except that
  1255.    Y can be a constant with VOIDmode.
  1256.    This mode cannot be BLKmode; use emit_block_move for that.
  1257.  
  1258.    Return the last instruction emitted.  */
  1259.  
  1260. rtx
  1261. emit_move_insn (x, y)
  1262.      rtx x, y;
  1263. {
  1264.   enum machine_mode mode = GET_MODE (x);
  1265.   x = protect_from_queue (x, 1);
  1266.   y = protect_from_queue (y, 0);
  1267.  
  1268.   if ((CONSTANT_P (y) || GET_CODE (y) == CONST_DOUBLE)
  1269.       && ! LEGITIMATE_CONSTANT_P (y))
  1270.     {
  1271.       y = force_const_mem (mode, y);
  1272.       if (! memory_address_p (mode, XEXP (y, 0)))
  1273.     y = gen_rtx (MEM, mode, memory_address (mode, XEXP (y, 0)));
  1274.     }
  1275.  
  1276.   if (mode == BLKmode)
  1277.     abort ();
  1278.   if (mov_optab->handlers[(int) mode].insn_code != CODE_FOR_nothing)
  1279.     return
  1280.       emit_insn (GEN_FCN (mov_optab->handlers[(int) mode].insn_code) (x, y));
  1281. #if 0
  1282.   /* It turns out you get much better optimization (in cse and flow)
  1283.      if you define movdi and movdf instruction patterns
  1284.      even if they must turn into multiple assembler instructions.  */
  1285.   else if (GET_MODE_SIZE (mode) >= GET_MODE_SIZE (SImode))
  1286.     {
  1287.       register int count = GET_MODE_SIZE (mode) / GET_MODE_SIZE (SImode);
  1288.       register int i;
  1289.       if (GET_CODE (y) == CONST_DOUBLE && y != dconst0_rtx)
  1290.     y = force_const_double_mem (y);
  1291.       for (i = 0; i < count; i++)
  1292.     {
  1293.       rtx x1, y1;
  1294.       if (GET_CODE (x) == REG)
  1295.         x1 = gen_rtx (SUBREG, SImode, x, i);
  1296.       else
  1297.         x1 = gen_rtx (MEM, SImode,
  1298.               memory_address (SImode,
  1299.                       plus_constant (XEXP (x, 0),
  1300.                              i * GET_MODE_SIZE (SImode))));
  1301.       if (GET_CODE (y) == REG)
  1302.         y1 = gen_rtx (SUBREG, SImode, y, i);
  1303.       else if (y == dconst0_rtx)
  1304.         y1 = const0_rtx;
  1305.       else
  1306.         y1 = gen_rtx (MEM, SImode,
  1307.               memory_address (SImode,
  1308.                       plus_constant (XEXP (y, 0),
  1309.                              i * GET_MODE_SIZE (SImode))));
  1310.       emit_insn (gen_movsi (protect_from_queue (x1, 1), protect_from_queue (y1, 0)));
  1311.     }
  1312.     }
  1313. #endif
  1314.   else
  1315.     abort ();
  1316. }
  1317.  
  1318. /* Pushing data onto the stack.  */
  1319.  
  1320. /* Push a block of length SIZE (perhaps variable)
  1321.    and return an rtx to address the beginning of the block.
  1322.    Note that it is not possible for the value returned to be a QUEUED.
  1323.    The value may be stack_pointer_rtx.
  1324.  
  1325.    The value we return does take account of STACK_POINTER_OFFSET.  */
  1326.  
  1327. rtx
  1328. push_block (size)
  1329.      rtx size;
  1330. {
  1331.   register rtx temp;
  1332. #if defined( DSP56000 )
  1333.   if ( GET_CODE (size) == CONST_DOUBLE )
  1334.   {
  1335.       size = gen_rtx ( CONST_INT, VOIDmode, CONST_DOUBLE_LOW ( size ));
  1336.   }
  1337. #endif
  1338.   if (CONSTANT_P (size) || GET_CODE (size) == REG)
  1339.     anti_adjust_stack (size);
  1340.   else
  1341.     anti_adjust_stack (copy_to_mode_reg (Pmode, size));
  1342.  
  1343. #ifdef STACK_GROWS_DOWNWARD
  1344.   temp = stack_pointer_rtx;
  1345. #else
  1346.   temp = gen_rtx (PLUS, Pmode,
  1347.           stack_pointer_rtx,
  1348.           negate_rtx (Pmode, size));
  1349.   if (GET_CODE (size) != CONST_INT)
  1350.     temp = force_operand (temp, 0);
  1351. #endif
  1352.  
  1353. #ifdef STACK_POINTER_OFFSET
  1354.   temp = plus_constant (temp, STACK_POINTER_OFFSET);
  1355. #endif /* STACK_POINTER_OFFSET */
  1356.  
  1357.   return memory_address (QImode, temp);
  1358. }
  1359.  
  1360. static rtx
  1361. gen_push_operand ()
  1362. {
  1363.   return gen_rtx (
  1364. #ifdef STACK_GROWS_DOWNWARD
  1365.           PRE_DEC,
  1366. #else
  1367. #if defined( DSP96000 ) || defined( DSP56000 )
  1368.           POST_INC,
  1369. #else
  1370.           PRE_INC,
  1371. #endif
  1372. #endif
  1373.           Pmode,
  1374.           stack_pointer_rtx);
  1375. }
  1376.  
  1377. /* Generate code to push X onto the stack, assuming it has mode MODE.
  1378.    MODE is redundant except when X is a CONST_INT (since they don't
  1379.    carry mode info).
  1380.    SIZE is an rtx for the size of data to be copied (in bytes),
  1381.    needed only if X is BLKmode.
  1382.  
  1383.  
  1384.  
  1385.  
  1386.  
  1387.    ALIGN (in bytes) is maximum alignment we can assume.
  1388.  
  1389.    If PARTIAL is nonzero, then copy that many of the first words
  1390.    of X into registers starting with REG, and push the rest of X.
  1391.    The amount of space pushed is decreased by PARTIAL words,
  1392.    rounded *down* to a multiple of PARM_BOUNDARY.
  1393.    REG must be a hard register in this case.
  1394.  
  1395.    EXTRA is the amount in bytes of extra space to leave next to this arg.
  1396.  
  1397.    On a machine that lacks real push insns, ARGS_ADDR is the address of
  1398.    the bottom of the argument block for this call.  We use indexing off there
  1399.    to store the arg.  On machines with push insns, ARGS_ADDR is 0.
  1400.  
  1401.    ARGS_SO_FAR is the size of args previously pushed for this call.  */
  1402.  
  1403. static void
  1404. emit_push_insn (x, mode, size, align, partial, reg, extra, args_addr, args_so_far)
  1405.      register rtx x;
  1406.      enum machine_mode mode;
  1407.      rtx size;
  1408.      int align;
  1409.      int partial;
  1410.      rtx reg;
  1411.      int extra;
  1412.      rtx args_addr;
  1413.      rtx args_so_far;
  1414. {
  1415.   rtx xinner;
  1416.   enum direction stack_direction
  1417. #ifdef STACK_GROWS_DOWNWARD
  1418.     = downward;
  1419. #else
  1420.     = upward;
  1421. #endif
  1422.  
  1423.   /* Decide where to pad the argument: `downward' for below,
  1424.      `upward' for above, or `none' for don't pad it.
  1425.      Default is below for small data on big-endian machines; else above.  */
  1426.   enum direction where_pad = FUNCTION_ARG_PADDING (mode, size);
  1427.  
  1428.   xinner = x = protect_from_queue (x, 0);
  1429.  
  1430.   if (extra)
  1431.     {
  1432.       if (args_addr == 0)
  1433.     {
  1434.       /* Push padding now if padding above and stack grows down,
  1435.          or if padding below and stack grows up.  */
  1436.       if (where_pad != none && where_pad != stack_direction)
  1437.         anti_adjust_stack (gen_rtx (CONST_INT, VOIDmode, extra));
  1438.     }
  1439.       else
  1440.     {
  1441.       /* If space already allocated, just adjust the address we use.  */
  1442.       if (where_pad == downward)
  1443.         args_so_far = plus_constant (args_so_far, extra);
  1444.     }
  1445.     }
  1446.  
  1447.   if (mode == BLKmode)
  1448.     {
  1449.       /* Copy a block into the stack, entirely or partially.  */
  1450.  
  1451.       register rtx temp;
  1452.       int used = partial * UNITS_PER_WORD;
  1453.       int offset = used % (PARM_BOUNDARY / BITS_PER_UNIT);
  1454.       int skip;
  1455.       
  1456.       if (size == 0)
  1457.     abort ();
  1458.  
  1459.       used -= offset;
  1460.  
  1461.       /* USED is now the # of bytes we need not copy to the stack
  1462.      because registers will take care of them.  */
  1463.  
  1464.       if (partial != 0)
  1465.     xinner = change_address (xinner, BLKmode,
  1466.                  plus_constant (XEXP (xinner, 0), used));
  1467.  
  1468. /* If the partial register-part of the arg counts in its stack size,
  1469.    skip the part of stack space corresponding to the registers.
  1470.    Otherwise, start copying to the beginning of the stack space,
  1471.    by setting SKIP to 0.  */
  1472. #ifndef FIRST_PARM_CALLER_OFFSET
  1473.       skip = 0;
  1474. #else
  1475.       skip = used;
  1476. #endif
  1477.  
  1478. #ifdef PUSH_ROUNDING
  1479.       /* Do it with several push insns if that doesn't take lots of insns
  1480.      and if there is no difficulty with push insns that skip bytes
  1481.      on the stack for alignment purposes.  */
  1482.       if (args_addr == 0
  1483.       && GET_CODE (size) == CONST_INT
  1484.       && args_addr == 0
  1485.       && skip == 0
  1486.       && (move_by_pieces_ninsns ((unsigned) INTVAL (size) - used, align)
  1487.           < MOVE_RATIO)
  1488.       && PUSH_ROUNDING (INTVAL (size)) == INTVAL (size))
  1489.     move_by_pieces (gen_rtx (MEM, BLKmode, gen_push_operand ()), xinner,
  1490.             INTVAL (size) - used, align);
  1491.       else
  1492. #endif /* PUSH_ROUNDING */
  1493.     {
  1494.       /* Otherwise make space on the stack and copy the data
  1495.          to the address of that space.  */
  1496.  
  1497.       /* Deduct words put into registers from the size we must copy.  */
  1498.       if (partial != 0)
  1499.         {
  1500.           if (GET_CODE (size) == CONST_INT)
  1501.         size = gen_rtx (CONST_INT, VOIDmode, INTVAL (size) - used);
  1502.           else
  1503.         size = expand_binop (GET_MODE (size), sub_optab, size,
  1504.                      gen_rtx (CONST_INT, VOIDmode, used),
  1505.                      0, 0, OPTAB_LIB_WIDEN);
  1506.         }
  1507.  
  1508.       /* Get the address of the stack space.  */
  1509.       if (! args_addr)
  1510.         temp = push_block (size);
  1511.       else if (GET_CODE (args_so_far) == CONST_INT)
  1512.         temp = memory_address (BLKmode,
  1513.                    plus_constant (args_addr,
  1514.                           skip + INTVAL (args_so_far)));
  1515.       else
  1516.         temp = memory_address (BLKmode,
  1517.                    plus_constant (gen_rtx (PLUS, Pmode,
  1518.                                args_addr, args_so_far),
  1519.                           skip));
  1520.  
  1521.       /* TEMP is the address of the block.  Copy the data there.  */
  1522.       if (GET_CODE (size) == CONST_INT
  1523.           && (move_by_pieces_ninsns ((unsigned) INTVAL (size), align)
  1524.           < MOVE_RATIO))
  1525.         {
  1526.           move_by_pieces (gen_rtx (MEM, BLKmode, temp), xinner,
  1527.                   INTVAL (size), align);
  1528.           goto ret;
  1529.         }
  1530.       /* Try the most limited insn first, because there's no point
  1531.          including more than one in the machine description unless
  1532.          the more limited one has some advantage.  */
  1533. #ifdef HAVE_movstrqi
  1534.       if (HAVE_movstrqi
  1535.           && GET_CODE (size) == CONST_INT
  1536.           && ((unsigned) INTVAL (size)
  1537.           < (1 << (GET_MODE_BITSIZE (QImode) - 1))))
  1538.         {
  1539.           emit_insn (gen_movstrqi (gen_rtx (MEM, BLKmode, temp),
  1540.                        xinner, size,
  1541.                        gen_rtx (CONST_INT, VOIDmode, align)));
  1542.           goto ret;
  1543.         }
  1544. #endif
  1545. #ifdef HAVE_movstrhi
  1546.       if (HAVE_movstrhi
  1547.           && GET_CODE (size) == CONST_INT
  1548.           && ((unsigned) INTVAL (size)
  1549.           < (1 << (GET_MODE_BITSIZE (HImode) - 1))))
  1550.         {
  1551.           emit_insn (gen_movstrhi (gen_rtx (MEM, BLKmode, temp),
  1552.                        xinner, size,
  1553.                        gen_rtx (CONST_INT, VOIDmode, align)));
  1554.           goto ret;
  1555.         }
  1556. #endif
  1557. #ifdef HAVE_movstrsi
  1558.       if (HAVE_movstrsi)
  1559.         {
  1560.           emit_insn (gen_movstrsi (gen_rtx (MEM, BLKmode, temp),
  1561.                        xinner, size,
  1562.                        gen_rtx (CONST_INT, VOIDmode, align)));
  1563.           goto ret;
  1564.         }
  1565. #endif
  1566.  
  1567.       if (reg_mentioned_p (stack_pointer_rtx, temp))
  1568.         {
  1569.           /* Now that emit_library_call does force_operand
  1570.          before pushing anything, preadjustment does not work.  */
  1571.           temp = copy_to_reg (temp);
  1572. #if 0
  1573.           /* Correct TEMP so it holds what will be a description of
  1574.          the address to copy to, valid after one arg is pushed.  */
  1575.           int xsize = GET_MODE_SIZE (Pmode);
  1576. #ifdef PUSH_ROUNDING
  1577.           xsize = PUSH_ROUNDING (xsize);
  1578. #endif
  1579.           xsize = ((xsize + PARM_BOUNDARY / BITS_PER_UNIT - 1)
  1580.                / (PARM_BOUNDARY / BITS_PER_UNIT)
  1581.                * (PARM_BOUNDARY / BITS_PER_UNIT));
  1582. #ifdef TARGET_MEM_FUNCTIONS
  1583.           /* If we are calling bcopy, we push one arg before TEMP.
  1584.          If calling memcpy, we push two.  */
  1585.           xsize *= 2;
  1586. #endif
  1587. #ifdef STACK_GROWS_DOWNWARD
  1588.           temp = plus_constant (temp, xsize);
  1589. #else
  1590.           temp = plus_constant (temp, -xsize);
  1591. #endif /* not STACK_GROWS_DOWNWARD */
  1592. #endif /* 0 */
  1593.         }
  1594.  
  1595.       /* Make inhibit_defer_pop nonzero around the library call
  1596.          to force it to pop the bcopy-arguments right away.  */
  1597.       NO_DEFER_POP;
  1598. #ifdef TARGET_MEM_FUNCTIONS
  1599.       emit_library_call (gen_rtx (SYMBOL_REF, Pmode, "memcpy"), 0,
  1600.                  VOIDmode, 3, temp, Pmode, XEXP (xinner, 0), Pmode,
  1601.                  size, Pmode);
  1602. #else
  1603.       emit_library_call (gen_rtx (SYMBOL_REF, Pmode, "bcopy"), 0,
  1604.                  VOIDmode, 3, XEXP (xinner, 0), Pmode, temp, Pmode,
  1605.                  size, Pmode);
  1606. #endif
  1607.       OK_DEFER_POP;
  1608.     }
  1609.     }
  1610.   else if (partial > 0)
  1611.     {
  1612.       /* Scalar partly in registers.  */
  1613.  
  1614.       int size = GET_MODE_SIZE (mode) / UNITS_PER_WORD;
  1615.       int i;
  1616.       int not_stack;
  1617.       /* # words of start of argument
  1618.      that we must make space for but need not store.  */
  1619.       int offset = partial % (PARM_BOUNDARY / BITS_PER_WORD);
  1620.       int args_offset = INTVAL (args_so_far);
  1621.       int skip;
  1622.  
  1623.       /* If we make space by pushing it, we might as well push
  1624.      the real data.  Otherwise, we can leave OFFSET nonzero
  1625.      and leave the space uninitialized.  */
  1626.       if (args_addr == 0)
  1627.     offset = 0;
  1628.  
  1629.       /* Now NOT_STACK gets the number of words that we don't need to
  1630.      allocate on the stack.  */
  1631.       not_stack = partial - offset;
  1632.  
  1633. /* If the partial register-part of the arg counts in its stack size,
  1634.    skip the part of stack space corresponding to the registers.
  1635.    Otherwise, start copying to the beginning of the stack space,
  1636.    by setting SKIP to 0.  */
  1637. #ifndef FIRST_PARM_CALLER_OFFSET
  1638.       skip = 0;
  1639. #else
  1640.       skip = not_stack;
  1641. #endif
  1642.  
  1643.       if (GET_CODE (x) == CONST_DOUBLE && x != dconst0_rtx)
  1644.     x = force_const_double_mem (x);
  1645.  
  1646.       /* Loop over all the words allocated on the stack for this arg.  */
  1647.       /* We can do it by words, because any scalar bigger than a word
  1648.      has a size a multiple of a word.  */
  1649. #ifndef PUSH_ARGS_REVERSED
  1650.       for (i = not_stack; i < size; i++)
  1651. #else
  1652.       for (i = size - 1; i >= not_stack; i--)
  1653. #endif
  1654.     if (i >= not_stack + offset)
  1655.       {
  1656.         rtx wd;
  1657.         rtx addr;
  1658.         /* Get the next word of the value in WD.  */
  1659.         if (GET_CODE (x) == MEM)
  1660.           {
  1661.         rtx addr = memory_address (SImode,
  1662.                        plus_constant (XEXP (x, 0),
  1663.                               i * UNITS_PER_WORD));
  1664.         /* Copy to a reg, since machine may lack
  1665.            memory-to-memory move insns.  */
  1666.         wd = copy_to_reg (gen_rtx (MEM, SImode, addr));
  1667.           }
  1668.         else if (GET_CODE (x) == REG)
  1669.           wd = gen_rtx (SUBREG, SImode, x, i);
  1670.         else if (x == dconst0_rtx)
  1671.           wd = const0_rtx;
  1672.         else
  1673.           abort ();
  1674.  
  1675.         emit_push_insn (wd,
  1676.                 SImode, 0, align, 0, 0, 0, args_addr,
  1677.                 gen_rtx (CONST_INT, VOIDmode,
  1678.                      args_offset + (i - not_stack + skip) * UNITS_PER_WORD));
  1679.       }
  1680.     }
  1681.   else
  1682.     {
  1683.       rtx addr;
  1684. #ifdef PUSH_ROUNDING
  1685.       if (args_addr == 0)
  1686.     addr = gen_push_operand ();
  1687.       else
  1688. #endif
  1689.     if (GET_CODE (args_so_far) == CONST_INT)
  1690.       addr
  1691.         = memory_address (mode,
  1692.                   plus_constant (args_addr, INTVAL (args_so_far)));
  1693.       else
  1694.     addr = memory_address (mode, gen_rtx (PLUS, Pmode, args_addr,
  1695.                           args_so_far));
  1696.  
  1697.       emit_move_insn (gen_rtx (MEM, mode, addr), x);
  1698.     }
  1699.  
  1700.  ret:
  1701.   /* If part should go in registers, copy that part
  1702.      into the appropriate registers.  Do this now, at the end,
  1703.      since mem-to-mem copies above may do function calls.  */
  1704.   if (partial > 0)
  1705.     move_block_to_reg (REGNO (reg), x, partial);
  1706.  
  1707.   if (extra && args_addr == 0 && where_pad == stack_direction)
  1708.     anti_adjust_stack (gen_rtx (CONST_INT, VOIDmode, extra));
  1709. }
  1710.  
  1711. /* Output a library call to function FUN (a SYMBOL_REF rtx)
  1712.    (emitting the queue unless NO_QUEUE is nonzero),
  1713.    for a value of mode OUTMODE,
  1714.    with NARGS different arguments, passed as alternating rtx values
  1715.    and machine_modes to convert them to.
  1716.    The rtx values should have been passed through protect_from_queue already.  */
  1717.  
  1718. void
  1719. #if defined( STDARGS_ARE_COOL )
  1720. emit_library_call ( rtx fun, ... )
  1721. #else
  1722. emit_library_call (va_alist)
  1723.      va_dcl
  1724. #endif
  1725. {
  1726.   register va_list p;
  1727.   register int args_size = 0;
  1728.   register int argnum;
  1729.   enum machine_mode outmode;
  1730.   int nargs;
  1731. #if ! defined( STDARGS_ARE_COOL )
  1732.   rtx fun;
  1733. #endif
  1734.   rtx orgfun;
  1735.   int inc;
  1736.   int count;
  1737.   rtx *regvec;
  1738.   rtx argblock = 0;
  1739.   CUMULATIVE_ARGS args_so_far;
  1740.   struct arg { rtx value; enum machine_mode mode; };
  1741.   struct arg *argvec;
  1742.   int old_inhibit_defer_pop = inhibit_defer_pop;
  1743.   int stack_padding = 0;
  1744.   int no_queue = 0;
  1745.   rtx use_insns;
  1746.  
  1747. #if defined( STDARGS_ARE_COOL )
  1748.   va_start (p, fun);
  1749.   orgfun = fun;
  1750. #else
  1751.   va_start (p);
  1752.   orgfun = fun = va_arg (p, rtx);
  1753. #endif
  1754.   no_queue = va_arg (p, int);
  1755.   outmode = va_arg (p, enum machine_mode);
  1756.   nargs = va_arg (p, int);
  1757.  
  1758.   regvec = (rtx *) alloca (nargs * sizeof (rtx));
  1759.  
  1760.   /* Copy all the libcall-arguments out of the varargs data
  1761.      and into a vector ARGVEC.  */
  1762.   argvec = (struct arg *) alloca (nargs * sizeof (struct arg));
  1763.   for (count = 0; count < nargs; count++)
  1764.     {
  1765.       rtx val = va_arg (p, rtx);
  1766.       enum machine_mode mode = va_arg (p, enum machine_mode);
  1767.  
  1768.       argvec[count].value = val;
  1769.  
  1770.       /* Convert the arg value to the mode the library wants.
  1771.      Also make sure it is a reasonable operand
  1772.      for a move or push insn.  */
  1773.       /* ??? It is wrong to do it here; must do it earlier
  1774.      where we know the signedness of the arg.  */
  1775.       if (GET_MODE (val) != mode && GET_MODE (val) != VOIDmode)
  1776.     {
  1777.       val = gen_reg_rtx (mode);
  1778.       convert_move (val, argvec[count].value, 0);
  1779.     }
  1780.       else if (GET_CODE (val) != REG && GET_CODE (val) != MEM
  1781.            
  1782.            && ! ((CONSTANT_P (val) || GET_CODE (val) == CONST_DOUBLE)
  1783.              && LEGITIMATE_CONSTANT_P (val)))
  1784.     val = force_operand (val, 0);
  1785.  
  1786.       argvec[count].value = val;
  1787.       argvec[count].mode = mode;
  1788.     }
  1789.   va_end (p);
  1790.  
  1791.   /* If we have no actual push instructions, make space for all the args
  1792.      right now.  */
  1793. #ifndef PUSH_ROUNDING
  1794.   INIT_CUMULATIVE_ARGS (args_so_far, (tree)0);
  1795.   for (count = 0; count < nargs; count++)
  1796.     {
  1797.       register enum machine_mode mode = argvec[count].mode;
  1798.       register rtx reg;
  1799.       register int partial;
  1800.  
  1801.       reg = FUNCTION_ARG (args_so_far, mode, (tree)0, 1);
  1802. #ifdef FUNCTION_ARG_PARTIAL_NREGS
  1803.       partial = FUNCTION_ARG_PARTIAL_NREGS (args_so_far, mode, (tree)0, 1);
  1804. #else
  1805.       partial = 0;
  1806. #endif
  1807.       if (reg == 0 || partial != 0)
  1808.     args_size += GET_MODE_SIZE (mode);
  1809.       if (partial != 0)
  1810.     args_size -= partial * GET_MODE_SIZE (SImode);
  1811.       FUNCTION_ARG_ADVANCE (args_so_far, mode, (tree)0, 1);
  1812.     }
  1813.  
  1814.   if (args_size != 0)
  1815.     {
  1816. #ifdef STACK_ARGS_ADJUST
  1817.       struct args_size size;
  1818.       size.constant = args_size;
  1819.       size.var = 0;
  1820.       STACK_ARGS_ADJUST (size);
  1821.       args_size = size.constant;
  1822. #endif
  1823.       argblock
  1824.     = push_block (round_push (gen_rtx (CONST_INT, VOIDmode, args_size)));
  1825.     }
  1826. #endif /* no PUSH_ROUNDING */
  1827.  
  1828.   INIT_CUMULATIVE_ARGS (args_so_far, (tree)0);
  1829.  
  1830. #ifdef PUSH_ARGS_REVERSED
  1831.   inc = -1;
  1832.   argnum = nargs - 1;
  1833. #else
  1834.   inc = 1;
  1835.   argnum = 0;
  1836. #endif
  1837.   args_size = stack_padding;
  1838.  
  1839. #if defined( DSP56000 ) || defined( DSP96000 )
  1840.   /* NOTE: this fix will no longer work if FUNCTION_ARG_PARTIAL_NREGS
  1841.      is really used !!!! -tje */
  1842.   for (count = 0; count < nargs; count++)
  1843.     {
  1844.       regvec[count] = FUNCTION_ARG (args_so_far,
  1845.                     argvec[count].mode, (tree)0, 1);
  1846.       FUNCTION_ARG_ADVANCE (args_so_far,
  1847.                 argvec[count].mode, (tree)0, 1);
  1848.     }
  1849. #endif
  1850.   for (count = 0; count < nargs; count++, argnum += inc)
  1851.     {
  1852.       register enum machine_mode mode = argvec[argnum].mode;
  1853.       register rtx val = argvec[argnum].value;
  1854.       rtx reg;
  1855.       int partial;
  1856.       int arg_size;
  1857.  
  1858. #if defined( DSP56000 ) || defined( DSP96000 )
  1859.       reg = regvec[argnum];
  1860. #else      
  1861.       reg = FUNCTION_ARG (args_so_far, mode, (tree)0, 1);
  1862.       regvec[argnum] = reg;
  1863. #endif
  1864. #ifdef FUNCTION_ARG_PARTIAL_NREGS
  1865.       partial = FUNCTION_ARG_PARTIAL_NREGS (args_so_far, mode, (tree)0, 1);
  1866. #else
  1867.       partial = 0;
  1868. #endif
  1869.  
  1870.       if (reg != 0 && partial == 0)
  1871.     emit_move_insn (reg, val);
  1872.       else
  1873.     emit_push_insn (val, mode, 0, 0, partial, reg, 0, argblock,
  1874.             gen_rtx (CONST_INT, VOIDmode, args_size));
  1875.  
  1876.       /* Compute size of stack space used by this argument.  */
  1877.       if (reg == 0 || partial != 0)
  1878. #if defined( DSP56000 )
  1879.       /* see comment in expand_call ~line 4450, expr.c */
  1880.       if ((( DFmode == mode ) ||
  1881.            ( SFmode == mode ) ||
  1882.            ( DImode == mode )) && ( 'l' == memory_model ))
  1883.       {
  1884.           arg_size = 1;
  1885.       }
  1886.       else
  1887.       {
  1888.           arg_size = GET_MODE_SIZE (mode);
  1889.       }
  1890. #else
  1891.     arg_size = GET_MODE_SIZE (mode);
  1892. #endif
  1893.       else
  1894.     arg_size = 0;
  1895.       if (partial != 0)
  1896.     arg_size
  1897.       -= ((partial * UNITS_PER_WORD)
  1898.           / (PARM_BOUNDARY / BITS_PER_UNIT)
  1899.           * (PARM_BOUNDARY / BITS_PER_UNIT));
  1900.  
  1901.       args_size += arg_size;
  1902.       NO_DEFER_POP;
  1903. #if ! defined( DSP56000 ) && ! defined( DSP96000 )
  1904.       FUNCTION_ARG_ADVANCE (args_so_far, mode, (tree)0, 1);
  1905. #endif
  1906.     }
  1907.  
  1908.   /* For version 1.37, try deleting this entirely.  */
  1909.   if (! no_queue)
  1910.     emit_queue ();
  1911.  
  1912.   fun = prepare_call_address (fun, 0);
  1913.  
  1914.   /* Any regs containing parms remain in use through the call.  */
  1915.   start_sequence ();
  1916.   for (count = 0; count < nargs; count++)
  1917.     if (regvec[count] != 0)
  1918.       emit_insn (gen_rtx (USE, VOIDmode, regvec[count]));
  1919.  
  1920.   use_insns = gen_sequence ();
  1921.   end_sequence ();
  1922.  
  1923. #ifdef STACK_BOUNDARY
  1924.   args_size = (args_size + STACK_BYTES - 1) / STACK_BYTES * STACK_BYTES;
  1925. #endif
  1926.  
  1927.   /* Don't allow popping to be deferred, since then
  1928.      cse'ing of library calls could delete a call and leave the pop.  */
  1929.   NO_DEFER_POP;
  1930.   emit_call_1 (fun, get_identifier (XSTR (orgfun, 0)), args_size,
  1931.            FUNCTION_ARG (args_so_far, VOIDmode, void_type_node, 1),
  1932.            outmode != VOIDmode ? hard_libcall_value (outmode) : 0,
  1933.            old_inhibit_defer_pop + 1, use_insns);
  1934.   OK_DEFER_POP;
  1935. }
  1936.  
  1937. /* Expand an assignment that stores the value of FROM into TO.
  1938.    If WANT_VALUE is nonzero, return an rtx for the value of TO.
  1939.    (This may contain a QUEUED rtx.)
  1940.    Otherwise, the returned value is not meaningful.
  1941.  
  1942.    SUGGEST_REG is no longer actually used.
  1943.    It used to mean, copy the value through a register
  1944.    and return that register, if that is possible.
  1945.    But now we do this if WANT_VALUE.
  1946.  
  1947.    If the value stored is a constant, we return the constant.  */
  1948.  
  1949. rtx
  1950. expand_assignment (to, from, want_value, suggest_reg)
  1951.      tree to, from;
  1952.      int want_value;
  1953.      int suggest_reg;
  1954. {
  1955.   register rtx to_rtx = 0;
  1956.  
  1957.   /* Don't crash if the lhs of the assignment was erroneous.  */
  1958.  
  1959.   if (TREE_CODE (to) == ERROR_MARK)
  1960.     return expand_expr (from, 0, VOIDmode, 0);
  1961.  
  1962.   /* Assignment of a structure component needs special treatment
  1963.      if the structure component's rtx is not simply a MEM.
  1964.      Assignment of an array element at a constant index
  1965.      has the same problem.  */
  1966.  
  1967.   if (TREE_CODE (to) == COMPONENT_REF
  1968.       || (TREE_CODE (to) == ARRAY_REF
  1969.       && TREE_CODE (TREE_OPERAND (to, 1)) == INTEGER_CST
  1970.       && TREE_CODE (TYPE_SIZE (TREE_TYPE (to))) == INTEGER_CST))
  1971.     {
  1972.       register enum machine_mode mode1;
  1973.       int bitsize;
  1974.       int volstruct = 0;
  1975.       tree tem = to;
  1976.       int bitpos = 0;
  1977.       int unsignedp;
  1978.  
  1979.       if (TREE_CODE (to) == COMPONENT_REF)
  1980.     {
  1981.       tree field = TREE_OPERAND (to, 1);
  1982.       bitsize = TREE_INT_CST_LOW (DECL_SIZE (field)) * DECL_SIZE_UNIT (field);
  1983.       mode1 = DECL_MODE (TREE_OPERAND (to, 1));
  1984.       unsignedp = TREE_UNSIGNED (field);
  1985.     }
  1986.       else
  1987.     {
  1988.       mode1 = TYPE_MODE (TREE_TYPE (to));
  1989.       bitsize = GET_MODE_BITSIZE (mode1);
  1990.       unsignedp = TREE_UNSIGNED (TREE_TYPE (to));
  1991.     }
  1992.  
  1993.       /* Compute cumulative bit-offset for nested component-refs
  1994.      and array-refs, and find the ultimate containing object.  */
  1995.  
  1996.       while (1)
  1997.     {
  1998.       if (TREE_CODE (tem) == COMPONENT_REF)
  1999.         {
  2000.           bitpos += DECL_OFFSET (TREE_OPERAND (tem, 1));
  2001.           if (TREE_THIS_VOLATILE (tem))
  2002.         volstruct = 1;
  2003.         }
  2004.       else if (TREE_CODE (tem) == ARRAY_REF
  2005.            && TREE_CODE (TREE_OPERAND (tem, 1)) == INTEGER_CST
  2006.            && TREE_CODE (TYPE_SIZE (TREE_TYPE (tem))) == INTEGER_CST)
  2007.         {
  2008.           bitpos += (TREE_INT_CST_LOW (TREE_OPERAND (tem, 1))
  2009.              * TREE_INT_CST_LOW (TYPE_SIZE (TREE_TYPE (tem)))
  2010.              * TYPE_SIZE_UNIT (TREE_TYPE (tem)));
  2011.         }
  2012.       else
  2013.         break;
  2014.       tem = TREE_OPERAND (tem, 0);
  2015.     }
  2016.       /* TEM is now the containing data object.  */
  2017.  
  2018.       /* If we are going to use store_bit_field and extract_bit_field,
  2019.      make sure to_rtx will be safe for multiple use.  */
  2020.       if (mode1 == BImode && want_value)
  2021.     tem = stabilize_reference (tem);
  2022.  
  2023.       to_rtx = expand_expr (tem, 0, VOIDmode, 0);
  2024.  
  2025.       return store_field (to_rtx, bitsize, bitpos, mode1, from,
  2026.               (want_value
  2027.                /* Spurious cast makes HPUX compiler happy.  */
  2028.                ? (enum machine_mode) TYPE_MODE (TREE_TYPE (to))
  2029.                : VOIDmode),
  2030.               unsignedp,
  2031.               /* Required alignment of containing datum.  */
  2032.               TYPE_ALIGN (TREE_TYPE (tem)) / BITS_PER_UNIT);
  2033.     }
  2034.  
  2035.   /* Ordinary treatment.  Expand TO to get a REG or MEM rtx.
  2036.      Don't re-expand if it was expanded already (in COMPONENT_REF case).  */
  2037.  
  2038.   if (to_rtx == 0)
  2039.     to_rtx = expand_expr (to, 0, VOIDmode, 0);
  2040.  
  2041.   /* Compute FROM and store the value in the rtx we got.  */
  2042.  
  2043.   return store_expr (from, to_rtx, want_value);
  2044. }
  2045.  
  2046. /* Generate code for computing expression EXP,
  2047.    and storing the value into TARGET.
  2048.    Returns TARGET or an equivalent value.
  2049.    TARGET may contain a QUEUED rtx.
  2050.  
  2051.    If SUGGEST_REG is nonzero, copy the value through a register
  2052.    and return that register, if that is possible.
  2053.  
  2054.    If the value stored is a constant, we return the constant.  */
  2055.  
  2056. rtx
  2057. store_expr (exp, target, suggest_reg)
  2058.      register tree exp;
  2059.      register rtx target;
  2060.      int suggest_reg;
  2061. {
  2062.   register rtx temp;
  2063.   int dont_return_target = 0;
  2064.  
  2065.   /* Copying a non-constant CONSTRUCTOR needs special treatment.  */
  2066.  
  2067.   if (TREE_CODE (exp) == CONSTRUCTOR && ! TREE_LITERAL (exp))
  2068.     {
  2069.       store_constructor (exp, target);
  2070.       return target;
  2071.     }
  2072.  
  2073.   if (suggest_reg && GET_CODE (target) == MEM && GET_MODE (target) != BLKmode)
  2074.     /* If target is in memory and caller wants value in a register instead,
  2075.        arrange that.  Pass TARGET as target for expand_expr so that,
  2076.        if EXP is another assignment, SUGGEST_REG will be nonzero for it.
  2077.        We know expand_expr will not use the target in that case.  */
  2078.     {
  2079.       temp = expand_expr (exp, cse_not_expected ? 0 : target,
  2080.               GET_MODE (target), 0);
  2081.       if (GET_MODE (temp) != BLKmode && GET_MODE (temp) != VOIDmode)
  2082.     temp = copy_to_reg (temp);
  2083.       dont_return_target = 1;
  2084.     }
  2085.   else if (queued_subexp_p (target))
  2086.     /* If target contains a postincrement, it is not safe
  2087.        to use as the returned value.  It would access the wrong
  2088.        place by the time the queued increment gets output.
  2089.        So copy the value through a temporary and use that temp
  2090.        as the result.  */
  2091.     {
  2092.       temp = expand_expr (exp, 0, GET_MODE (target), 0);
  2093.       if (GET_MODE (temp) != BLKmode && GET_MODE (temp) != VOIDmode)
  2094.     temp = copy_to_reg (temp);
  2095.       dont_return_target = 1;
  2096.     }
  2097.   else
  2098.     {
  2099.       temp = expand_expr (exp, target, GET_MODE (target), 0);
  2100.       /* DO return TARGET if it's a specified hardware register.
  2101.      expand_return relies on this.  */
  2102.       if (!(target && GET_CODE (target) == REG
  2103.         && REGNO (target) < FIRST_PSEUDO_REGISTER)
  2104.       && (CONSTANT_P (temp) || GET_CODE (temp) == CONST_DOUBLE))
  2105.     dont_return_target = 1;
  2106.     }
  2107.  
  2108.   /* If value was not generated in the target, store it there.
  2109.      Convert the value to TARGET's type first if nec.  */
  2110.  
  2111.   if (temp != target && TREE_CODE (exp) != ERROR_MARK)
  2112.     {
  2113.       target = protect_from_queue (target, 1);
  2114.       if (GET_MODE (temp) != GET_MODE (target)
  2115.       && GET_MODE (temp) != VOIDmode)
  2116.     {
  2117.       int unsignedp = TREE_UNSIGNED (TREE_TYPE (exp));
  2118.       if (dont_return_target)
  2119.         {
  2120.           /* In this case, we will return TEMP,
  2121.          so make sure it has the proper mode.
  2122.          But don't forget to store the value into TARGET.  */
  2123.           temp = convert_to_mode (GET_MODE (target), temp, unsignedp);
  2124.           emit_move_insn (target, temp);
  2125.         }
  2126.       else
  2127.         convert_move (target, temp, unsignedp);
  2128.     }
  2129.  
  2130.       else if (GET_MODE (temp) == BLKmode)
  2131.     emit_block_move (target, temp, expr_size (exp),
  2132.              TYPE_ALIGN (TREE_TYPE (exp)) / BITS_PER_UNIT);
  2133.       else
  2134.     emit_move_insn (target, temp);
  2135.     }
  2136.   if (dont_return_target)
  2137.     return temp;
  2138.   return target;
  2139. }
  2140.  
  2141. /* Store the value of constructor EXP into the rtx TARGET.
  2142.    TARGET is either a REG or a MEM.  */
  2143.  
  2144. static void
  2145. store_constructor (exp, target)
  2146.      tree exp;
  2147.      rtx target;
  2148. {
  2149.   /* Don't try copying piece by piece into a hard register
  2150.      since that is vulnerable to being clobbered by EXP.
  2151.      Instead, construct in a pseudo register and then copy it all.  */
  2152.   if (GET_CODE (target) == REG && REGNO (target) < FIRST_PSEUDO_REGISTER)
  2153.     {
  2154.       rtx temp = gen_reg_rtx (GET_MODE (target));
  2155.       store_constructor (exp, temp);
  2156.       emit_move_insn (target, temp);
  2157.       return;
  2158.     }
  2159.  
  2160.   if (TREE_CODE (TREE_TYPE (exp)) == RECORD_TYPE)
  2161.     {
  2162.       register tree elt;
  2163.  
  2164.       /* If the constructor has fewer fields than the structure,
  2165.      clear the whole structure first.  */
  2166.  
  2167.       if (list_length (CONSTRUCTOR_ELTS (exp))
  2168.       != list_length (TYPE_FIELDS (TREE_TYPE (exp))))
  2169.     clear_storage (target, int_size_in_bytes (TREE_TYPE (exp)));
  2170.       else
  2171.     /* Inform later passes that the old value is dead.  */
  2172.     emit_insn (gen_rtx (CLOBBER, VOIDmode, target));
  2173.  
  2174.       /* Store each element of the constructor into
  2175.      the corresponding field of TARGET.  */
  2176.  
  2177.       for (elt = CONSTRUCTOR_ELTS (exp); elt; elt = TREE_CHAIN (elt))
  2178.     {
  2179.       register tree field = TREE_PURPOSE (elt);
  2180.       register enum machine_mode mode;
  2181.       int bitsize;
  2182.       int bitpos;
  2183.       int unsignedp;
  2184.  
  2185.       bitsize = TREE_INT_CST_LOW (DECL_SIZE (field)) * DECL_SIZE_UNIT (field);
  2186.       mode = DECL_MODE (field);
  2187.       unsignedp = TREE_UNSIGNED (field);
  2188.  
  2189.       bitpos = DECL_OFFSET (field);
  2190.  
  2191.       store_field (target, bitsize, bitpos, mode, TREE_VALUE (elt),
  2192.                /* The alignment of TARGET is
  2193.               at least what its type requires.  */
  2194.                VOIDmode, 0,
  2195.                TYPE_ALIGN (TREE_TYPE (exp)) / BITS_PER_UNIT);
  2196.     }
  2197.     }
  2198.   else if (TREE_CODE (TREE_TYPE (exp)) == ARRAY_TYPE)
  2199.     {
  2200.       register tree elt;
  2201.       register int i;
  2202.       tree domain = TYPE_DOMAIN (TREE_TYPE (exp));
  2203.       int minelt = TREE_INT_CST_LOW (TYPE_MIN_VALUE (domain));
  2204.       int maxelt = TREE_INT_CST_LOW (TYPE_MAX_VALUE (domain));
  2205.       tree elttype = TREE_TYPE (TREE_TYPE (exp));
  2206.  
  2207.       /* If the constructor has fewer fields than the structure,
  2208.      clear the whole structure first.  */
  2209.  
  2210.       if (list_length (CONSTRUCTOR_ELTS (exp)) < maxelt - minelt + 1)
  2211.     clear_storage (target, maxelt - minelt + 1);
  2212.       else
  2213.     /* Inform later passes that the old value is dead.  */
  2214.     emit_insn (gen_rtx (CLOBBER, VOIDmode, target));
  2215.  
  2216.       /* Store each element of the constructor into
  2217.      the corresponding element of TARGET, determined
  2218.      by counting the elements.  */
  2219.       for (elt = CONSTRUCTOR_ELTS (exp), i = 0;
  2220.        elt;
  2221.        elt = TREE_CHAIN (elt), i++)
  2222.     {
  2223.       register enum machine_mode mode;
  2224.       int bitsize;
  2225.       int bitpos;
  2226.       int unsignedp;
  2227.  
  2228.       mode = TYPE_MODE (elttype);
  2229.       bitsize = GET_MODE_BITSIZE (mode);
  2230.       unsignedp = TREE_UNSIGNED (elttype);
  2231.  
  2232.       bitpos = (i * TREE_INT_CST_LOW (TYPE_SIZE (elttype))
  2233.             * TYPE_SIZE_UNIT (elttype));
  2234.  
  2235.       store_field (target, bitsize, bitpos, mode, TREE_VALUE (elt),
  2236.                /* The alignment of TARGET is
  2237.               at least what its type requires.  */
  2238.                VOIDmode, 0,
  2239.                TYPE_ALIGN (TREE_TYPE (exp)) / BITS_PER_UNIT);
  2240.     }
  2241.     }
  2242. }
  2243.  
  2244. /* Store the value of EXP (an expression tree)
  2245.    into a subfield of TARGET which has mode MODE and occupies
  2246.    BITSIZE bits, starting BITPOS bits from the start of TARGET.
  2247.  
  2248.    If VALUE_MODE is VOIDmode, return nothing in particular.
  2249.    UNSIGNEDP is not used in this case.
  2250.  
  2251.    Otherwise, return an rtx for the value stored.  This rtx
  2252.    has mode VALUE_MODE if that is convenient to do.
  2253.    In this case, UNSIGNEDP must be nonzero if the value is an unsigned type.
  2254.  
  2255.    ALIGN is the alignment that TARGET is known to have, measured in bytes.  */
  2256.  
  2257. static rtx
  2258. store_field (target, bitsize, bitpos, mode, exp, value_mode, unsignedp, align)
  2259.      rtx target;
  2260.      int bitsize, bitpos;
  2261.      enum machine_mode mode;
  2262.      tree exp;
  2263.      enum machine_mode value_mode;
  2264.      int unsignedp;
  2265.      int align;
  2266. {
  2267.   /* If the structure is in a register or if the component
  2268.      is a bit field, we cannot use addressing to access it.
  2269.      Use bit-field techniques or SUBREG to store in it.  */
  2270.  
  2271.   if (mode == BImode || GET_CODE (target) == REG
  2272.       || GET_CODE (target) == SUBREG)
  2273.     {
  2274.       store_bit_field (target, bitsize, bitpos,
  2275.                mode,
  2276.                expand_expr (exp, 0, VOIDmode, 0),
  2277.                align);
  2278.       if (value_mode != VOIDmode)
  2279.     return extract_bit_field (target, bitsize, bitpos, unsignedp,
  2280.                   0, value_mode, 0, align);
  2281.       return const0_rtx;
  2282.     }
  2283.   else
  2284.     {
  2285.       rtx addr = XEXP (target, 0);
  2286.       rtx to_rtx;
  2287.  
  2288.       /* If a value is wanted, it must be the lhs;
  2289.      so make the address stable for multiple use.  */
  2290.  
  2291.       if (value_mode != VOIDmode && GET_CODE (addr) != REG
  2292.       && ! CONSTANT_ADDRESS_P (addr))
  2293.     addr = copy_to_reg (addr);
  2294.  
  2295.       /* Now build a reference to just the desired component.  */
  2296.  
  2297.       to_rtx = change_address (target, mode,
  2298.                    plus_constant (addr,
  2299.                           (bitpos / BITS_PER_UNIT)));
  2300.       MEM_IN_STRUCT_P (to_rtx) = 1;
  2301.  
  2302.       return store_expr (exp, to_rtx, value_mode != VOIDmode);
  2303.     }
  2304. }
  2305.  
  2306. /* Given an rtx VALUE that may contain additions and multiplications,
  2307.    return an equivalent value that just refers to a register or memory.
  2308.    This is done by generating instructions to perform the arithmetic
  2309.    and returning a pseudo-register containing the value.  */
  2310.  
  2311. rtx
  2312. force_operand (value, target)
  2313.      rtx value, target;
  2314. {
  2315.   register optab binoptab = 0;
  2316.   register rtx op2;
  2317.   /* Use subtarget as the target for operand 0 of a binary operation.  */
  2318.   register rtx subtarget = (target != 0 && GET_CODE (target) == REG ? target : 0);
  2319.  
  2320.   if (GET_CODE (value) == PLUS)
  2321.     binoptab = add_optab;
  2322.   else if (GET_CODE (value) == MINUS)
  2323.     binoptab = sub_optab;
  2324.   else if (GET_CODE (value) == MULT)
  2325.     {
  2326.       op2 = XEXP (value, 1);
  2327.       if (!CONSTANT_P (op2)
  2328.       && !(GET_CODE (op2) == REG && op2 != subtarget))
  2329.     subtarget = 0;
  2330.       return expand_mult (GET_MODE (value),
  2331.               force_operand (XEXP (value, 0), subtarget),
  2332.               force_operand (op2, 0),
  2333.               target, 0);
  2334.     }
  2335.  
  2336.   if (binoptab)
  2337.     {
  2338.       op2 = XEXP (value, 1);
  2339.       if (!CONSTANT_P (op2)
  2340.       && !(GET_CODE (op2) == REG && op2 != subtarget))
  2341.     subtarget = 0;
  2342.       if (binoptab == sub_optab
  2343.       && GET_CODE (op2) == CONST_INT && INTVAL (op2) < 0)
  2344.     {
  2345.       binoptab = add_optab;
  2346.       op2 = gen_rtx (CONST_INT, VOIDmode, - INTVAL (op2));
  2347.     }
  2348.       return expand_binop (GET_MODE (value), binoptab,
  2349.                force_operand (XEXP (value, 0), subtarget),
  2350.                force_operand (op2, 0),
  2351.                target, 0, OPTAB_LIB_WIDEN);
  2352.       /* We give UNSIGNEP = 0 to expand_binop
  2353.      because the only operations we are expanding here are signed ones.  */
  2354.     }
  2355.   return value;
  2356. }
  2357.  
  2358. /* expand_expr: generate code for computing expression EXP.
  2359.    An rtx for the computed value is returned.  The value is never null.
  2360.    In the case of a void EXP, const0_rtx is returned.
  2361.  
  2362.    The value may be stored in TARGET if TARGET is nonzero.
  2363.    TARGET is just a suggestion; callers must assume that
  2364.    the rtx returned may not be the same as TARGET.
  2365.  
  2366.    If TARGET is CONST0_RTX, it means that the value will be ignored.
  2367.  
  2368.    If TMODE is not VOIDmode, it suggests generating the
  2369.    result in mode TMODE.  But this is done only when convenient.
  2370.    Otherwise, TMODE is ignored and the value generated in its natural mode.
  2371.    TMODE is just a suggestion; callers must assume that
  2372.    the rtx returned may not have mode TMODE.
  2373.  
  2374.    If MODIFIER is EXPAND_SUM then when EXP is an addition
  2375.    we can return an rtx of the form (MULT (REG ...) (CONST_INT ...))
  2376.    or a nest of (PLUS ...) and (MINUS ...) where the terms are
  2377.    products as above, or REG or MEM, or constant.
  2378.    Ordinarily in such cases we would output mul or add instructions
  2379.    and then return a pseudo reg containing the sum.
  2380.  
  2381.    If MODIFIER is EXPAND_CONST_ADDRESS then it is ok to return
  2382.    a MEM rtx whose address is a constant that isn't a legitimate address.  */
  2383.  
  2384. /* Subroutine of expand_expr:
  2385.    save the non-copied parts (LIST) of an expr (LHS), and return a list
  2386.    which can restore these values to their previous values,
  2387.    should something modify their storage.  */
  2388. static tree
  2389. save_noncopied_parts (lhs, list)
  2390.      tree lhs;
  2391.      tree list;
  2392. {
  2393.   tree tail;
  2394.   tree parts = 0;
  2395.  
  2396.   for (tail = list; tail; tail = TREE_CHAIN (tail))
  2397.     if (TREE_CODE (TREE_VALUE (tail)) == TREE_LIST)
  2398. #if defined( DSP56000 ) || defined( DSP96000 )
  2399.       parts = chainon (parts, save_noncopied_parts (lhs, TREE_VALUE (tail)));
  2400. #else
  2401.       parts = chainon (parts, save_noncopied_parts (TREE_VALUE (tail)));
  2402. #endif
  2403.     else
  2404.       {
  2405.     tree part = TREE_VALUE (tail);
  2406.     tree part_type = TREE_TYPE (part);
  2407.     parts = tree_cons (save_expr (build_component_ref (lhs, part, parts, 0)),
  2408.                build_nt (RTL_EXPR, 0, (tree) assign_stack_local (TYPE_MODE (part_type), int_size_in_bytes (part_type))),
  2409.                parts);
  2410.     store_expr (TREE_PURPOSE (parts), RTL_EXPR_RTL (TREE_VALUE (parts)), 0);
  2411.       }
  2412.   return parts;
  2413. }
  2414.  
  2415. /* Subroutine of expand_expr:
  2416.    return the target to use when recursively expanding
  2417.    the first operand of an arithmetic operation.  */
  2418.  
  2419. static rtx
  2420. validate_subtarget (subtarget, otherop)
  2421.      rtx subtarget;
  2422.      tree otherop;
  2423. {
  2424.   if (TREE_LITERAL (otherop))
  2425.     return subtarget;
  2426.   if (TREE_CODE (otherop) == VAR_DECL
  2427.       && DECL_RTL (otherop) != subtarget)
  2428.     return subtarget;
  2429.   return 0;
  2430. }
  2431.  
  2432. rtx
  2433. expand_expr (exp, target, tmode, modifier)
  2434.      register tree exp;
  2435.      rtx target;
  2436.      enum machine_mode tmode;
  2437.      enum expand_modifier modifier;
  2438. {
  2439.   register rtx op0, op1, temp;
  2440.   tree type = TREE_TYPE (exp);
  2441.   register enum machine_mode mode = TYPE_MODE (type);
  2442.   register enum tree_code code = TREE_CODE (exp);
  2443.   optab this_optab;
  2444.   int negate_1;
  2445.   /* Use subtarget as the target for operand 0 of a binary operation.  */
  2446.   rtx subtarget = (target != 0 && GET_CODE (target) == REG ? target : 0);
  2447.   rtx original_target = target;
  2448.   int ignore = target == const0_rtx;
  2449.  
  2450.   /* Don't use hard regs as subtargets, because the combiner
  2451.      can only handle pseudo regs.  */
  2452.   if (subtarget && REGNO (subtarget) < FIRST_PSEUDO_REGISTER)
  2453.     subtarget = 0;
  2454.   /* Avoid subtargets inside loops,
  2455.      since they hide some invariant expressions.  */
  2456.   if (optimize && inside_loop ())
  2457.     subtarget = 0;
  2458.  
  2459.   if (ignore) target = 0, original_target = 0;
  2460.  
  2461.   /* If will do cse, generate all results into registers
  2462.      since 1) that allows cse to find more things
  2463.      and 2) otherwise cse could produce an insn the machine
  2464.      cannot support.  */
  2465.  
  2466.   if (! cse_not_expected && mode != BLKmode)
  2467.     target = subtarget;
  2468.  
  2469.   /* No sense saving up arithmetic to be done
  2470.      if it's all in the wrong mode to form part of an address.
  2471.      And force_operand won't know whether to sign-extend or zero-extend.  */
  2472.  
  2473.   if (mode != Pmode && modifier == EXPAND_SUM)
  2474.     modifier = EXPAND_NORMAL;
  2475.  
  2476.   switch (code)
  2477.     {
  2478.     case PARM_DECL:
  2479.       if (DECL_RTL (exp) == 0)
  2480.     {
  2481.       error_with_decl (exp, "prior parameter's size depends on `%s'");
  2482.       return const0_rtx;
  2483.     }
  2484.  
  2485.     case FUNCTION_DECL:
  2486.     case VAR_DECL:
  2487.     case RESULT_DECL:
  2488.       if (DECL_RTL (exp) == 0)
  2489.     abort ();
  2490.       /* This is the case of an array whose size is to be determined
  2491.      from its initializer, while the initializer is still being parsed.
  2492.      See expand_decl.  */
  2493.       if (GET_CODE (DECL_RTL (exp)) == MEM
  2494.       && GET_CODE (XEXP (DECL_RTL (exp), 0)) == REG)
  2495.     return change_address (DECL_RTL (exp), GET_MODE (DECL_RTL (exp)),
  2496.                    XEXP (DECL_RTL (exp), 0));
  2497.       if (GET_CODE (DECL_RTL (exp)) == MEM
  2498.       && modifier != EXPAND_CONST_ADDRESS)
  2499.     {
  2500.       /* DECL_RTL probably contains a constant address.
  2501.          On RISC machines where a constant address isn't valid,
  2502.          make some insns to get that address into a register.  */
  2503.       if (!memory_address_p (DECL_MODE (exp), XEXP (DECL_RTL (exp), 0))
  2504.           || (flag_force_addr
  2505.           && CONSTANT_ADDRESS_P (XEXP (DECL_RTL (exp), 0))))
  2506.         return change_address (DECL_RTL (exp), VOIDmode,
  2507.                    copy_rtx (XEXP (DECL_RTL (exp), 0)));
  2508.     }
  2509.       return DECL_RTL (exp);
  2510.  
  2511.     case INTEGER_CST:
  2512.       if (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_INT)
  2513.     return gen_rtx (CONST_INT, VOIDmode, TREE_INT_CST_LOW (exp));
  2514.       /* Generate immediate CONST_DOUBLE
  2515.      which will be turned into memory by reload if necessary.  */
  2516.       return immed_double_const (TREE_INT_CST_LOW (exp),
  2517.                  TREE_INT_CST_HIGH (exp),
  2518.                  mode);
  2519.  
  2520.     case CONST_DECL:
  2521.       return expand_expr (DECL_INITIAL (exp), target, VOIDmode, 0);
  2522.  
  2523.     case REAL_CST:
  2524.       /* If optimized, generate immediate CONST_DOUBLE
  2525.      which will be turned into memory by reload if necessary.  */
  2526.       if (!cse_not_expected)
  2527.     return immed_real_const (exp);
  2528.     case COMPLEX_CST:
  2529.     case STRING_CST:
  2530.       if (! TREE_CST_RTL (exp))
  2531.     output_constant_def (exp);
  2532.  
  2533.       /* TREE_CST_RTL probably contains a constant address.
  2534.      On RISC machines where a constant address isn't valid,
  2535.      make some insns to get that address into a register.  */
  2536.       if (GET_CODE (TREE_CST_RTL (exp)) == MEM
  2537.       && modifier != EXPAND_CONST_ADDRESS
  2538.       && !memory_address_p (mode, XEXP (TREE_CST_RTL (exp), 0)))
  2539.     return change_address (TREE_CST_RTL (exp), VOIDmode,
  2540.                    copy_rtx (XEXP (TREE_CST_RTL (exp), 0)));
  2541.       return TREE_CST_RTL (exp);
  2542.  
  2543.     case SAVE_EXPR:
  2544.       if (SAVE_EXPR_RTL (exp) == 0)
  2545.     {
  2546.       rtx reg = gen_reg_rtx (mode);
  2547.       SAVE_EXPR_RTL (exp) = reg;
  2548.       store_expr (TREE_OPERAND (exp, 0), reg, 0);
  2549.       if (!optimize)
  2550.         save_expr_regs = gen_rtx (EXPR_LIST, VOIDmode, reg,
  2551.                       save_expr_regs);
  2552.     }
  2553.       /* Don't let the same rtl node appear in two places.  */
  2554.       return SAVE_EXPR_RTL (exp);
  2555.  
  2556.     case LET_STMT:
  2557.       TREE_USED (exp) = 1;
  2558.       temp = expand_expr (STMT_BODY (exp), target, tmode, modifier);
  2559.       return temp;
  2560.  
  2561.     case RTL_EXPR:
  2562.       if (RTL_EXPR_SEQUENCE (exp) == const0_rtx)
  2563.     abort ();
  2564.       emit_insns (RTL_EXPR_SEQUENCE (exp));
  2565.       RTL_EXPR_SEQUENCE (exp) = const0_rtx;
  2566.       return RTL_EXPR_RTL (exp);
  2567.  
  2568.     case CONSTRUCTOR:
  2569.       /* All elts simple constants => refer to a constant in memory.  */
  2570.       if (TREE_STATIC (exp))
  2571.     /* For aggregate types with non-BLKmode modes,
  2572.        this should ideally construct a CONST_INT.  */
  2573.     {
  2574.       rtx constructor = output_constant_def (exp);
  2575.       if (! memory_address_p (GET_MODE (constructor),
  2576.                   XEXP (constructor, 0)))
  2577.         constructor = change_address (constructor, VOIDmode,
  2578.                       XEXP (constructor, 0));
  2579.       return constructor;
  2580.     }
  2581.  
  2582.       if (ignore)
  2583.     {
  2584.       tree elt;
  2585.       for (elt = CONSTRUCTOR_ELTS (exp); elt; elt = TREE_CHAIN (elt))
  2586.         expand_expr (TREE_VALUE (elt), const0_rtx, VOIDmode, 0);
  2587.       return const0_rtx;
  2588.     }
  2589.       else
  2590.     {
  2591.       if (target == 0)
  2592.         target = gen_rtx (MEM, TYPE_MODE (TREE_TYPE (exp)),
  2593.                   get_structure_value_addr (expr_size (exp)));
  2594.       store_expr (exp, target, 0);
  2595.       return target;
  2596.     }
  2597.  
  2598.     case INDIRECT_REF:
  2599.       {
  2600.     tree exp1 = TREE_OPERAND (exp, 0);
  2601.     tree exp2;
  2602.  
  2603.     /* A SAVE_EXPR as the address in an INDIRECT_EXPR is generated
  2604.        for  *PTR += ANYTHING  where PTR is put inside the SAVE_EXPR.
  2605.        This code has the same general effect as simply doing
  2606.        expand_expr on the save expr, except that the expression PTR
  2607.        is computed for use as a memory address.  This means different
  2608.        code, suitable for indexing, may be generated.  */
  2609.     if (TREE_CODE (exp1) == SAVE_EXPR
  2610.         && SAVE_EXPR_RTL (exp1) == 0
  2611.         && TREE_CODE (exp2 = TREE_OPERAND (exp1, 0)) != ERROR_MARK
  2612.         && TYPE_MODE (TREE_TYPE (exp1)) == Pmode
  2613.         && TYPE_MODE (TREE_TYPE (exp2)) == Pmode)
  2614.       {
  2615.         temp = expand_expr (TREE_OPERAND (exp1, 0), 0, VOIDmode, EXPAND_SUM);
  2616.         op0 = memory_address (mode, temp);
  2617.         op0 = copy_all_regs (op0);
  2618.         SAVE_EXPR_RTL (exp1) = op0;
  2619.       }
  2620.     else
  2621.       {
  2622.         op0 = expand_expr (TREE_OPERAND (exp, 0), 0, VOIDmode, EXPAND_SUM);
  2623.         op0 = memory_address (mode, op0);
  2624.       }
  2625.       }
  2626.       temp = gen_rtx (MEM, mode, op0);
  2627.       /* If address was computed by addition,
  2628.      mark this as an element of an aggregate.  */
  2629.       if (TREE_CODE (TREE_OPERAND (exp, 0)) == PLUS_EXPR
  2630.       || (TREE_CODE (TREE_OPERAND (exp, 0)) == SAVE_EXPR
  2631.           && TREE_CODE (TREE_OPERAND (TREE_OPERAND (exp, 0), 0)) == PLUS_EXPR))
  2632.     MEM_IN_STRUCT_P (temp) = 1;
  2633.       MEM_VOLATILE_P (temp) = TREE_THIS_VOLATILE (exp) || flag_volatile;
  2634.       RTX_UNCHANGING_P (temp) = TREE_READONLY (exp);
  2635.       return temp;
  2636.  
  2637.     case ARRAY_REF:
  2638.       if (TREE_CODE (TREE_OPERAND (exp, 1)) != INTEGER_CST
  2639.       || TREE_CODE (TYPE_SIZE (TREE_TYPE (exp))) != INTEGER_CST)
  2640.     {
  2641.       /* Nonconstant array index or nonconstant element size.
  2642.          Generate the tree for *(&array+index) and expand that,
  2643.          except do it in a language-independent way
  2644.          and don't complain about non-lvalue arrays.
  2645.          `mark_addressable' should already have been called
  2646.          for any array for which this case will be reached.  */
  2647.  
  2648.       tree array_adr = build (ADDR_EXPR, TYPE_POINTER_TO (type),
  2649.                   TREE_OPERAND (exp, 0));
  2650.       tree index = TREE_OPERAND (exp, 1);
  2651.       tree elt;
  2652.  
  2653.       /* Convert the integer argument to a type the same size as a pointer
  2654.          so the multiply won't overflow spuriously.  */
  2655.       if (TYPE_PRECISION (TREE_TYPE (index)) != POINTER_SIZE)
  2656. #if defined( DSP56000 ) || defined( DSP96000 )
  2657.           /* we perform Pmode additions as Pmode <= Pmode + SImode.
  2658.            * it is really wrong to convert the index to Pmode, because
  2659.            * Pmode + Pmode is not defined. 
  2660.            */
  2661.         index = convert (integer_type_node, index);
  2662. #else
  2663.         index = convert (type_for_size (POINTER_SIZE, 0), index);
  2664. #endif
  2665.  
  2666.       /* The array address isn't volatile even if the array is.  */
  2667.       TREE_VOLATILE (array_adr) = 0;
  2668.  
  2669.       elt = build (INDIRECT_REF, type,
  2670.                fold (build (PLUS_EXPR, TYPE_POINTER_TO (type),
  2671.                     array_adr,
  2672.                     fold (build (MULT_EXPR,
  2673. #if defined( DSP56000 ) || defined( DSP96000 )
  2674.                          /* whoa! there is no such
  2675.                           * thing as a pointer mpy!
  2676.                           * we need to do an uint mpy
  2677.                           * and add int + ptr to get
  2678.                           * the ptr which will be the
  2679.                           * subj of INDIRECT_REF.
  2680.                           */
  2681.                          integer_type_node,
  2682. #else
  2683.                          TYPE_POINTER_TO (type),
  2684. #endif
  2685.                          index, size_in_bytes (type))))));
  2686.  
  2687.       return expand_expr (elt, target, tmode, modifier);
  2688.     }
  2689.  
  2690.       /* Fold an expression like: "foo"[2].
  2691.      This is not done in fold so it won't happen inside &.  */
  2692.       {
  2693.     int i;
  2694.     tree arg0 = TREE_OPERAND (exp, 0);
  2695.     tree arg1 = TREE_OPERAND (exp, 1);
  2696.  
  2697.     if (TREE_CODE (arg0) == STRING_CST
  2698.         && TREE_CODE (arg1) == INTEGER_CST
  2699.         && !TREE_INT_CST_HIGH (arg1)
  2700.         && (i = TREE_INT_CST_LOW (arg1)) < TREE_STRING_LENGTH (arg0))
  2701.       {
  2702.         if (TREE_TYPE (TREE_TYPE (arg0)) == integer_type_node)
  2703.           {
  2704.         exp = build_int_2 (((int *)TREE_STRING_POINTER (arg0))[i], 0);
  2705.         TREE_TYPE (exp) = integer_type_node;
  2706.         return expand_expr (exp, target, tmode, modifier);
  2707.           }
  2708.         if (TREE_TYPE (TREE_TYPE (arg0)) == char_type_node)
  2709.           {
  2710.         exp = build_int_2 (TREE_STRING_POINTER (arg0)[i], 0);
  2711.         TREE_TYPE (exp) = integer_type_node;
  2712.         return expand_expr (convert (TREE_TYPE (TREE_TYPE (arg0)), exp), target, tmode, modifier);
  2713.           }
  2714.       }
  2715.       }
  2716.  
  2717.       /* If this is a constant index into a constant array,
  2718.      just get the value from the array.  */
  2719.       if (TREE_READONLY (TREE_OPERAND (exp, 0))
  2720.       && ! TREE_VOLATILE (TREE_OPERAND (exp, 0))
  2721.       && TREE_CODE (TREE_TYPE (TREE_OPERAND (exp, 0))) == ARRAY_TYPE
  2722.       && TREE_LITERAL (TREE_OPERAND (exp, 1))
  2723.       && TREE_CODE (TREE_OPERAND (exp, 0)) == VAR_DECL
  2724.       && DECL_INITIAL (TREE_OPERAND (exp, 0))
  2725.       && TREE_CODE (DECL_INITIAL (TREE_OPERAND (exp, 0))) != ERROR_MARK)
  2726.     {
  2727.       tree index = fold (TREE_OPERAND (exp, 1));
  2728.       if (TREE_CODE (index) == INTEGER_CST)
  2729.         {
  2730.           int i = TREE_INT_CST_LOW (index);
  2731.           tree init = CONSTRUCTOR_ELTS (DECL_INITIAL (TREE_OPERAND (exp, 0)));
  2732.  
  2733.           while (init && i--)
  2734.         init = TREE_CHAIN (init);
  2735.           if (init)
  2736.         return expand_expr (fold (TREE_VALUE (init)), target, tmode, modifier);
  2737.         }
  2738.     }
  2739.       /* Treat array-ref with constant index as a component-ref.  */
  2740.  
  2741.     case COMPONENT_REF:
  2742.       {
  2743.     register enum machine_mode mode1;
  2744.     int volstruct = 0;
  2745.     int bitsize;
  2746.     tree tem = exp;
  2747.     int bitpos = 0;
  2748.     int unsignedp;
  2749.  
  2750.     if (TREE_CODE (exp) == COMPONENT_REF)
  2751.       {
  2752.         tree field = TREE_OPERAND (exp, 1);
  2753.         bitsize = TREE_INT_CST_LOW (DECL_SIZE (field)) * DECL_SIZE_UNIT (field);
  2754.         mode1 = DECL_MODE (TREE_OPERAND (exp, 1));
  2755.         unsignedp = TREE_UNSIGNED (field);
  2756.       }
  2757.     else
  2758.       {
  2759.         mode1 = TYPE_MODE (TREE_TYPE (exp));
  2760.         bitsize = GET_MODE_BITSIZE (mode1);
  2761.         unsignedp = TREE_UNSIGNED (TREE_TYPE (exp));
  2762.       }
  2763.  
  2764.     /* Compute cumulative bit-offset for nested component-refs
  2765.        and array-refs, and find the ultimate containing object.  */
  2766.  
  2767.     while (1)
  2768.       {
  2769.         if (TREE_CODE (tem) == COMPONENT_REF)
  2770.           {
  2771.         bitpos += DECL_OFFSET (TREE_OPERAND (tem, 1));
  2772.         if (TREE_THIS_VOLATILE (tem))
  2773.           volstruct = 1;
  2774.           }
  2775.         else if (TREE_CODE (tem) == ARRAY_REF
  2776.              && TREE_CODE (TREE_OPERAND (tem, 1)) == INTEGER_CST
  2777.              && TREE_CODE (TYPE_SIZE (TREE_TYPE (tem))) == INTEGER_CST)
  2778.           {
  2779.         bitpos += (TREE_INT_CST_LOW (TREE_OPERAND (tem, 1))
  2780.                * TREE_INT_CST_LOW (TYPE_SIZE (TREE_TYPE (tem)))
  2781.                * TYPE_SIZE_UNIT (TREE_TYPE (tem)));
  2782.           }
  2783.         else
  2784.           break;
  2785.         tem = TREE_OPERAND (tem, 0);
  2786.       }
  2787.  
  2788.     op0 = expand_expr (tem, 0, VOIDmode,
  2789.                (modifier == EXPAND_CONST_ADDRESS
  2790.                 ? modifier : EXPAND_NORMAL));
  2791.  
  2792.     if (mode1 == BImode || GET_CODE (op0) == REG
  2793.         || GET_CODE (op0) == SUBREG)
  2794.       return extract_bit_field (op0, bitsize, bitpos, unsignedp,
  2795.                     target, mode, tmode,
  2796.                     TYPE_ALIGN (TREE_TYPE (tem)) / BITS_PER_UNIT);
  2797.     /* Get a reference to just this component.  */
  2798.     if (modifier == EXPAND_CONST_ADDRESS)
  2799.       op0 = gen_rtx (MEM, mode1, plus_constant (XEXP (op0, 0),
  2800.                             (bitpos / BITS_PER_UNIT)));
  2801.     else
  2802.       op0 = change_address (op0, mode1,
  2803.                 plus_constant (XEXP (op0, 0),
  2804.                            (bitpos / BITS_PER_UNIT)));
  2805.     MEM_IN_STRUCT_P (op0) = 1;
  2806.     MEM_VOLATILE_P (op0) |= volstruct;
  2807.     /* If OP0 is in the shared structure-value stack slot,
  2808.        and it is not BLKmode, copy it into a register.
  2809.        The shared slot may be clobbered at any time by another call.
  2810.        BLKmode is safe because our caller will either copy the value away
  2811.        or take another component and come back here.  */
  2812.     if (mode != BLKmode
  2813.         && TREE_CODE (TREE_OPERAND (exp, 0)) == CALL_EXPR
  2814.         && TYPE_MODE (TREE_TYPE (TREE_OPERAND (exp, 0))) == BLKmode)
  2815.       op0 = copy_to_reg (op0);
  2816.     if (mode == mode1 || mode1 == BLKmode || mode1 == tmode)
  2817.       return op0;
  2818.     if (target == 0)
  2819.       target = gen_reg_rtx (tmode != VOIDmode ? tmode : mode);
  2820.     convert_move (target, op0, unsignedp);
  2821.     return target;
  2822.       }
  2823.  
  2824.       /* Intended for a reference to a buffer of a file-object in Pascal.
  2825.      But it's not certain that a special tree code will really be
  2826.      necessary for these.  INDIRECT_REF might work for them.  */
  2827.     case BUFFER_REF:
  2828.       abort ();
  2829.  
  2830.     case WITH_CLEANUP_EXPR:
  2831.       RTL_EXPR_RTL (TREE_OPERAND (exp, 1))
  2832.     = expand_expr (TREE_OPERAND (exp, 0), target, tmode, modifier);
  2833.       cleanups_of_this_call = tree_cons (0, TREE_OPERAND (exp, 2), cleanups_of_this_call);
  2834.       return RTL_EXPR_RTL (TREE_OPERAND (exp, 1));
  2835.  
  2836.     case CALL_EXPR:
  2837.       /* Check for a built-in function.  */
  2838.       if (TREE_CODE (TREE_OPERAND (exp, 0)) == ADDR_EXPR
  2839.       && TREE_CODE (TREE_OPERAND (TREE_OPERAND (exp, 0), 0)) == FUNCTION_DECL
  2840.       && (DECL_FUNCTION_CODE (TREE_OPERAND (TREE_OPERAND (exp, 0), 0))
  2841.           != NOT_BUILT_IN))
  2842.     return expand_builtin (exp, target, subtarget, tmode, ignore);
  2843.       /* If this call was expanded already by preexpand_calls,
  2844.      just return the result we got.  */
  2845.       if (CALL_EXPR_RTL (exp) != 0)
  2846.     return CALL_EXPR_RTL (exp);
  2847.       return expand_call (exp, target, ignore);
  2848.  
  2849.     case NOP_EXPR:
  2850.     case CONVERT_EXPR:
  2851.     case REFERENCE_EXPR:
  2852.       if (TREE_CODE (type) == VOID_TYPE || ignore)
  2853.     {
  2854.       expand_expr (TREE_OPERAND (exp, 0), const0_rtx, VOIDmode, modifier);
  2855.       return const0_rtx;
  2856.     }
  2857.       if (mode == TYPE_MODE (TREE_TYPE (TREE_OPERAND (exp, 0))))
  2858.     return expand_expr (TREE_OPERAND (exp, 0), target, VOIDmode, modifier);
  2859.       op0 = expand_expr (TREE_OPERAND (exp, 0), 0, mode, 0);
  2860.       if (GET_MODE (op0) == mode || GET_MODE (op0) == VOIDmode)
  2861.     return op0;
  2862.       if (flag_force_mem && GET_CODE (op0) == MEM)
  2863.     op0 = copy_to_reg (op0);
  2864.       if (GET_MODE (op0) == VOIDmode)
  2865.     /* Avoid problem in convert_move due to unknown mode of OP0.  */
  2866.     op0 = copy_to_mode_reg (TYPE_MODE (TREE_TYPE (TREE_OPERAND (exp, 0))),
  2867.                 op0);
  2868.       if (target == 0)
  2869.     target = gen_reg_rtx (mode);
  2870.       convert_move (target, op0, TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp, 0))));
  2871.       return target;
  2872.  
  2873.     case PLUS_EXPR:
  2874.       preexpand_calls (exp);
  2875.       if (TREE_CODE (TREE_OPERAND (exp, 0)) == INTEGER_CST
  2876.       && modifier == EXPAND_SUM)
  2877.     {
  2878.       op1 = expand_expr (TREE_OPERAND (exp, 1), subtarget, VOIDmode, EXPAND_SUM);
  2879.       op1 = plus_constant (op1, TREE_INT_CST_LOW (TREE_OPERAND (exp, 0)));
  2880.       return op1;
  2881.     }
  2882.       negate_1 = 1;
  2883.     plus_minus:
  2884.       if (TREE_CODE (TREE_OPERAND (exp, 1)) == INTEGER_CST
  2885.       && modifier == EXPAND_SUM)
  2886.     {
  2887.       op0 = expand_expr (TREE_OPERAND (exp, 0), subtarget, VOIDmode, EXPAND_SUM);
  2888.       op0 = plus_constant (op0,
  2889.                    negate_1 * TREE_INT_CST_LOW (TREE_OPERAND (exp, 1)));
  2890.       return op0;
  2891.     }
  2892.       this_optab = add_optab;
  2893.       if (modifier != EXPAND_SUM) goto binop;
  2894.       subtarget = validate_subtarget (subtarget, TREE_OPERAND (exp, 1));
  2895.       op0 = expand_expr (TREE_OPERAND (exp, 0), subtarget, VOIDmode, EXPAND_SUM);
  2896.       op1 = expand_expr (TREE_OPERAND (exp, 1), 0, VOIDmode, EXPAND_SUM);
  2897.       /* Put a sum last, to simplify what follows.  */
  2898. #ifdef OLD_INDEXING
  2899.       if (GET_CODE (op1) == MULT)
  2900.     {
  2901.       temp = op0;
  2902.       op0 = op1;
  2903.       op1 = temp;
  2904.     }
  2905. #endif
  2906. #ifndef OLD_INDEXING
  2907.       /* Make sure any term that's a sum with a constant comes last.  */
  2908.       if (GET_CODE (op0) == PLUS
  2909.       && CONSTANT_P (XEXP (op0, 1)))
  2910.     {
  2911.       temp = op0;
  2912.       op0 = op1;
  2913.       op1 = temp;
  2914.     }
  2915.       /* If adding to a sum including a constant,
  2916.      associate it to put the constant outside.  */
  2917.       if (GET_CODE (op1) == PLUS
  2918.       && CONSTANT_P (XEXP (op1, 1)))
  2919.     {
  2920.       rtx tem;
  2921.       int constant_term = 0;
  2922.  
  2923.       op0 = gen_rtx (PLUS, mode, XEXP (op1, 0), op0);
  2924.       /* Let's also eliminate constants from op0 if possible.  */
  2925.       tem = eliminate_constant_term (op0, &constant_term);
  2926.       if (GET_CODE (XEXP (op1, 1)) == CONST_INT)
  2927.         {
  2928.           if (constant_term != 0)
  2929.         return plus_constant (tem, INTVAL (XEXP (op1, 1)) + constant_term);
  2930.           else
  2931.         return plus_constant (op0, INTVAL (XEXP (op1, 1)));
  2932.         }
  2933.       else
  2934.         return gen_rtx (PLUS, mode, op0, XEXP (op1, 1));
  2935.     }
  2936. #endif
  2937.       return gen_rtx (PLUS, mode, op0, op1);
  2938.  
  2939.     case MINUS_EXPR:
  2940.       preexpand_calls (exp);
  2941.       if (TREE_CODE (TREE_OPERAND (exp, 1)) == INTEGER_CST
  2942.       && GET_MODE_BITSIZE (TYPE_MODE (type)) <= HOST_BITS_PER_INT)
  2943.     {
  2944.       int negated;
  2945.       if (modifier == EXPAND_SUM)
  2946.         {
  2947.           negate_1 = -1;
  2948.           goto plus_minus;
  2949.         }
  2950.       subtarget = validate_subtarget (subtarget, TREE_OPERAND (exp, 1));
  2951.       op0 = expand_expr (TREE_OPERAND (exp, 0), subtarget, VOIDmode, 0);
  2952.       negated = - TREE_INT_CST_LOW (TREE_OPERAND (exp, 1));
  2953.       if (GET_MODE_BITSIZE (mode) < HOST_BITS_PER_INT)
  2954.         negated &= (1 << GET_MODE_BITSIZE (mode)) - 1;
  2955.       op1 = gen_rtx (CONST_INT, VOIDmode, negated);
  2956.       this_optab = add_optab;
  2957.       goto binop2;
  2958.     }
  2959.       this_optab = sub_optab;
  2960.       goto binop;
  2961.  
  2962.     case MULT_EXPR:
  2963.       preexpand_calls (exp);
  2964.       /* If first operand is constant, swap them.
  2965.      Thus the following special case checks need only
  2966.      check the second operand.  */
  2967.       if (TREE_CODE (TREE_OPERAND (exp, 0)) == INTEGER_CST)
  2968.     {
  2969.       register tree t1 = TREE_OPERAND (exp, 0);
  2970.       TREE_OPERAND (exp, 0) = TREE_OPERAND (exp, 1);
  2971.       TREE_OPERAND (exp, 1) = t1;
  2972.     }
  2973.  
  2974.       /* Attempt to return something suitable for generating an
  2975.      indexed address, for machines that support that.  */
  2976.  
  2977.       if (modifier == EXPAND_SUM
  2978.       && TREE_CODE (TREE_OPERAND (exp, 1)) == INTEGER_CST)
  2979.     {
  2980.       op0 = expand_expr (TREE_OPERAND (exp, 0), subtarget, VOIDmode, EXPAND_SUM);
  2981.  
  2982.       /* Apply distributive law if OP0 is x+c.  */
  2983.       if (GET_CODE (op0) == PLUS
  2984.           && GET_CODE (XEXP (op0, 1)) == CONST_INT)
  2985.         return gen_rtx (PLUS, mode,
  2986.                 gen_rtx (MULT, mode, XEXP (op0, 0),
  2987.                      gen_rtx (CONST_INT, VOIDmode,
  2988.                           TREE_INT_CST_LOW (TREE_OPERAND (exp, 1)))),
  2989.                 gen_rtx (CONST_INT, VOIDmode,
  2990.                      (TREE_INT_CST_LOW (TREE_OPERAND (exp, 1))
  2991.                       * INTVAL (XEXP (op0, 1)))));
  2992.  
  2993.       if (GET_CODE (op0) != REG)
  2994.         op0 = force_operand (op0, 0);
  2995.       if (GET_CODE (op0) != REG)
  2996.         op0 = copy_to_mode_reg (mode, op0);
  2997.  
  2998.       return gen_rtx (MULT, mode, op0,
  2999.               gen_rtx (CONST_INT, VOIDmode,
  3000.                    TREE_INT_CST_LOW (TREE_OPERAND (exp, 1))));
  3001.     }
  3002.       subtarget = validate_subtarget (subtarget, TREE_OPERAND (exp, 1));
  3003.       /* Check for multiplying things that have been extended
  3004.      from a narrower type.  If this machine supports multiplying
  3005.      in that narrower type with a result in the desired type,
  3006.      do it that way, and avoid the explicit type-conversion.  */
  3007.       if (TREE_CODE (TREE_OPERAND (exp, 0)) == NOP_EXPR
  3008.       && TREE_CODE (TREE_TYPE (exp)) == INTEGER_TYPE
  3009.       && (TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (TREE_OPERAND (exp, 0), 0)))
  3010.           < TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (exp, 0))))
  3011.       && ((TREE_CODE (TREE_OPERAND (exp, 1)) == INTEGER_CST
  3012.            && int_fits_type_p (TREE_OPERAND (exp, 1),
  3013.                    TREE_TYPE (TREE_OPERAND (TREE_OPERAND (exp, 0), 0)))
  3014.            /* Don't use a widening multiply if a shift will do.  */
  3015.            && exact_log2 (TREE_INT_CST_LOW (TREE_OPERAND (exp, 1))) < 0)
  3016.           ||
  3017.           (TREE_CODE (TREE_OPERAND (exp, 1)) == NOP_EXPR
  3018.            && (TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (TREE_OPERAND (exp, 1), 0)))
  3019.            ==
  3020.            TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (TREE_OPERAND (exp, 0), 0))))
  3021.            /* If both operands are extended, they must either both
  3022.           be zero-extended or both be sign-extended.  */
  3023.            && (TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (TREE_OPERAND (exp, 1), 0)))
  3024.            ==
  3025.            TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (TREE_OPERAND (exp, 0), 0)))))))
  3026.     {
  3027.       enum machine_mode innermode
  3028.         = TYPE_MODE (TREE_TYPE (TREE_OPERAND (TREE_OPERAND (exp, 0), 0)));
  3029.       this_optab = (TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (TREE_OPERAND (exp, 0), 0)))
  3030.             ? umul_widen_optab : smul_widen_optab);
  3031.       if (mode == GET_MODE_WIDER_MODE (innermode)
  3032.           && this_optab->handlers[(int) mode].insn_code != CODE_FOR_nothing)
  3033.         {
  3034.           op0 = expand_expr (TREE_OPERAND (TREE_OPERAND (exp, 0), 0),
  3035.                  0, VOIDmode, 0);
  3036.           if (TREE_CODE (TREE_OPERAND (exp, 1)) == INTEGER_CST)
  3037.         op1 = expand_expr (TREE_OPERAND (exp, 1), 0, VOIDmode, 0);
  3038.           else
  3039.         op1 = expand_expr (TREE_OPERAND (TREE_OPERAND (exp, 1), 0),
  3040.                    0, VOIDmode, 0);
  3041.           goto binop2;
  3042.         }
  3043.     }
  3044.       op0 = expand_expr (TREE_OPERAND (exp, 0), subtarget, VOIDmode, 0);
  3045.       op1 = expand_expr (TREE_OPERAND (exp, 1), 0, VOIDmode, 0);
  3046.       return expand_mult (mode, op0, op1, target, TREE_UNSIGNED (type));
  3047.  
  3048.     case TRUNC_DIV_EXPR:
  3049.     case FLOOR_DIV_EXPR:
  3050.     case CEIL_DIV_EXPR:
  3051.     case ROUND_DIV_EXPR:
  3052.     case EXACT_DIV_EXPR:
  3053.       preexpand_calls (exp);
  3054.       subtarget = validate_subtarget (subtarget, TREE_OPERAND (exp, 1));
  3055.       /* Possible optimization: compute the dividend with EXPAND_SUM
  3056.      then if the divisor is constant can optimize the case
  3057.      where some terms of the dividend have coeffs divisible by it.  */
  3058.       op0 = expand_expr (TREE_OPERAND (exp, 0), subtarget, VOIDmode, 0);
  3059.       op1 = expand_expr (TREE_OPERAND (exp, 1), 0, VOIDmode, 0);
  3060.       return expand_divmod (0, code, mode, op0, op1, target,
  3061.                 TREE_UNSIGNED (type));
  3062.  
  3063.     case RDIV_EXPR:
  3064.       preexpand_calls (exp);
  3065.       this_optab = flodiv_optab;
  3066.       goto binop;
  3067.  
  3068.     case TRUNC_MOD_EXPR:
  3069.     case FLOOR_MOD_EXPR:
  3070.     case CEIL_MOD_EXPR:
  3071.     case ROUND_MOD_EXPR:
  3072.       preexpand_calls (exp);
  3073.       subtarget = validate_subtarget (subtarget, TREE_OPERAND (exp, 1));
  3074.       op0 = expand_expr (TREE_OPERAND (exp, 0), subtarget, VOIDmode, 0);
  3075.       op1 = expand_expr (TREE_OPERAND (exp, 1), 0, VOIDmode, 0);
  3076.       return expand_divmod (1, code, mode, op0, op1, target,
  3077.                 TREE_UNSIGNED (type));
  3078. #if 0
  3079. #ifdef HAVE_divmoddisi4
  3080.       if (GET_MODE (op0) != DImode)
  3081.     {
  3082.       temp = gen_reg_rtx (DImode);
  3083.       convert_move (temp, op0, 0);
  3084.       op0 = temp;
  3085.       if (GET_MODE (op1) != SImode && GET_CODE (op1) != CONST_INT)
  3086.         {
  3087.           temp = gen_reg_rtx (SImode);
  3088.           convert_move (temp, op1, 0);
  3089.           op1 = temp;
  3090.         }
  3091.       temp = gen_reg_rtx (SImode);
  3092.       if (target == 0)
  3093.         target = gen_reg_rtx (SImode);
  3094.       emit_insn (gen_divmoddisi4 (temp, protect_from_queue (op0, 0),
  3095.                       protect_from_queue (op1, 0),
  3096.                       protect_from_queue (target, 1)));
  3097.       return target;
  3098.     }
  3099. #endif
  3100. #endif
  3101.  
  3102.     case FIX_ROUND_EXPR:
  3103.     case FIX_FLOOR_EXPR:
  3104.     case FIX_CEIL_EXPR:
  3105.       abort ();            /* Not used for C.  */
  3106.  
  3107.     case FIX_TRUNC_EXPR:
  3108.       op0 = expand_expr (TREE_OPERAND (exp, 0), 0, VOIDmode, 0);
  3109.       if (target == 0)
  3110.     target = gen_reg_rtx (mode);
  3111.       {
  3112.     int unsignedp = TREE_UNSIGNED (TREE_TYPE (exp));
  3113.     if (mode == HImode || mode == QImode)
  3114.       {
  3115.         register rtx temp = gen_reg_rtx (SImode);
  3116.         expand_fix (temp, op0, 0);
  3117.         convert_move (target, temp, 0);
  3118.       }
  3119.     else
  3120.       expand_fix (target, op0, unsignedp);
  3121.       }
  3122.       return target;
  3123.  
  3124.     case FLOAT_EXPR:
  3125.       op0 = expand_expr (TREE_OPERAND (exp, 0), 0, VOIDmode, 0);
  3126.       if (target == 0)
  3127.     target = gen_reg_rtx (mode);
  3128.       if (GET_MODE (op0) == VOIDmode)
  3129.     /* Avoid problem in convert_move due to unknown mode of OP0.  */
  3130.     op0 = copy_to_mode_reg (TYPE_MODE (TREE_TYPE (TREE_OPERAND (exp, 0))),
  3131.                 op0);
  3132.       {
  3133.     int unsignedp = TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp, 0)));
  3134.     if (GET_MODE (op0) == HImode
  3135.         || GET_MODE (op0) == QImode)
  3136.       {
  3137.         register rtx temp = gen_reg_rtx (SImode);
  3138.         convert_move (temp, op0, unsignedp);
  3139.         expand_float (target, temp, 0);
  3140.       }
  3141.     else
  3142.       expand_float (target, op0, unsignedp);
  3143.       }
  3144.       return target;
  3145.  
  3146.     case NEGATE_EXPR:
  3147.       op0 = expand_expr (TREE_OPERAND (exp, 0), target, VOIDmode, 0);
  3148.       temp = expand_unop (mode, neg_optab, op0, target, 0);
  3149.       if (temp == 0)
  3150.     abort ();
  3151.       return temp;
  3152.  
  3153.     case ABS_EXPR:
  3154.       /* First try to do it with a special abs instruction.
  3155.      If that does not win, use conditional jump and negate.  */
  3156.       op0 = expand_expr (TREE_OPERAND (exp, 0), subtarget, VOIDmode, 0);
  3157.       temp = expand_unop (mode, abs_optab, op0, target, 0);
  3158.       if (temp != 0)
  3159.     return temp;
  3160.       temp = gen_label_rtx ();
  3161.       if (target == 0 || GET_CODE (target) != REG)
  3162.     target = gen_reg_rtx (mode);
  3163.       emit_move_insn (target, op0);
  3164.       emit_cmp_insn (target,
  3165.              expand_expr (convert (TREE_TYPE (exp), integer_zero_node),
  3166.                   0, VOIDmode, 0),
  3167.              0, 0, 0);
  3168.       NO_DEFER_POP;
  3169.       emit_jump_insn (gen_bge (temp));
  3170.       op0 = expand_unop (mode, neg_optab, target, target, 0);
  3171.       if (op0 != target)
  3172.     emit_move_insn (target, op0);
  3173.       emit_label (temp);
  3174.       OK_DEFER_POP;
  3175.       return target;
  3176.  
  3177.     case MAX_EXPR:
  3178.     case MIN_EXPR:
  3179.       mode = TYPE_MODE (TREE_TYPE (TREE_OPERAND (exp, 1)));
  3180.       op1 = expand_expr (TREE_OPERAND (exp, 1), 0, VOIDmode, 0);
  3181.       if (target == 0 || GET_CODE (target) != REG || target == op1)
  3182.     target = gen_reg_rtx (mode);
  3183.       op0 = expand_expr (TREE_OPERAND (exp, 0), target, VOIDmode, 0);
  3184.       if (target != op0)
  3185.     emit_move_insn (target, op0);
  3186.       op0 = gen_label_rtx ();
  3187.       if (code == MAX_EXPR)
  3188.     temp = (TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp, 1)))
  3189.         ? compare1 (target, op1, GEU, LEU, 1, mode)
  3190.         : compare1 (target, op1, GE, LE, 0, mode));
  3191.       else
  3192.     temp = (TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp, 1)))
  3193.         ? compare1 (target, op1, LEU, GEU, 1, mode)
  3194.         : compare1 (target, op1, LE, GE, 0, mode));
  3195.       if (temp == const0_rtx)
  3196.     emit_move_insn (target, op1);
  3197.       else if (temp != const1_rtx)
  3198.     {
  3199.       if (bcc_gen_fctn[(int) GET_CODE (temp)] != 0)
  3200.         emit_jump_insn ((*bcc_gen_fctn[(int) GET_CODE (temp)]) (op0));
  3201.       else
  3202.         abort ();
  3203.       emit_move_insn (target, op1);
  3204.     }
  3205.       emit_label (op0);
  3206.       return target;
  3207.  
  3208. /* ??? Can optimize when the operand of this is a bitwise operation,
  3209.    by using a different bitwise operation.  */
  3210.     case BIT_NOT_EXPR:
  3211.       op0 = expand_expr (TREE_OPERAND (exp, 0), subtarget, VOIDmode, 0);
  3212.       temp = expand_unop (mode, one_cmpl_optab, op0, target, 1);
  3213.       if (temp == 0)
  3214.     abort ();
  3215.       return temp;
  3216.  
  3217.     case FFS_EXPR:
  3218.       op0 = expand_expr (TREE_OPERAND (exp, 0), subtarget, VOIDmode, 0);
  3219.       temp = expand_unop (mode, ffs_optab, op0, target, 1);
  3220.       if (temp == 0)
  3221.     abort ();
  3222.       return temp;
  3223.  
  3224. /* ??? Can optimize bitwise operations with one arg constant.
  3225.    Pastel optimizes (a bitwise1 n) bitwise2 (a bitwise3 b)
  3226.    and (a bitwise1 b) bitwise2 b (etc)
  3227.    but that is probably not worth while.  */
  3228.  
  3229. /* BIT_AND_EXPR is for bitwise anding.
  3230.    TRUTH_AND_EXPR is for anding two boolean values
  3231.    when we want in all cases to compute both of them.
  3232.    In general it is fastest to do TRUTH_AND_EXPR by
  3233.    computing both operands as actual zero-or-1 values
  3234.    and then bitwise anding.  In cases where there cannot
  3235.    be any side effects, better code would be made by
  3236.    treating TRUTH_AND_EXPR like TRUTH_ANDIF_EXPR;
  3237.    but the question is how to recognize those cases.  */
  3238.  
  3239.     case TRUTH_AND_EXPR:
  3240.     case BIT_AND_EXPR:
  3241.       preexpand_calls (exp);
  3242.       subtarget = validate_subtarget (subtarget, TREE_OPERAND (exp, 1));
  3243.       op0 = expand_expr (TREE_OPERAND (exp, 0), subtarget, VOIDmode, 0);
  3244.       op1 = expand_expr (TREE_OPERAND (exp, 1), 0, VOIDmode, 0);
  3245.       return expand_bit_and (mode, op0, op1, target);
  3246.  
  3247. /* See comment above about TRUTH_AND_EXPR; it applies here too.  */
  3248.     case TRUTH_OR_EXPR:
  3249.     case BIT_IOR_EXPR:
  3250.       preexpand_calls (exp);
  3251.       this_optab = ior_optab;
  3252.       goto binop;
  3253.  
  3254.     case BIT_XOR_EXPR:
  3255.       preexpand_calls (exp);
  3256.       this_optab = xor_optab;
  3257.       goto binop;
  3258.  
  3259.     case LSHIFT_EXPR:
  3260.     case RSHIFT_EXPR:
  3261.     case LROTATE_EXPR:
  3262.     case RROTATE_EXPR:
  3263.       preexpand_calls (exp);
  3264.       subtarget = validate_subtarget (subtarget, TREE_OPERAND (exp, 1));
  3265.       op0 = expand_expr (TREE_OPERAND (exp, 0), subtarget, VOIDmode, 0);
  3266.       return expand_shift (code, mode, op0, TREE_OPERAND (exp, 1), target,
  3267.                TREE_UNSIGNED (type));
  3268.  
  3269. /* ??? cv's were used to effect here to combine additive constants
  3270.    and to determine the answer when only additive constants differ.
  3271.    Also, the addition of one can be handled by changing the condition.  */
  3272.     case LT_EXPR:
  3273.     case LE_EXPR:
  3274.     case GT_EXPR:
  3275.     case GE_EXPR:
  3276.     case EQ_EXPR:
  3277.     case NE_EXPR:
  3278.       preexpand_calls (exp);
  3279.       temp = do_store_flag (exp, target, mode);
  3280.       if (temp != 0)
  3281.     return temp;
  3282.       /* For foo != 0, load foo, and if it is nonzero load 1 instead. */
  3283.       if (code == NE_EXPR && integer_zerop (TREE_OPERAND (exp, 1))
  3284.       && subtarget
  3285.       && (GET_MODE (subtarget)
  3286.           == TYPE_MODE (TREE_TYPE (TREE_OPERAND (exp, 0)))))
  3287.     {
  3288.       temp = expand_expr (TREE_OPERAND (exp, 0), subtarget, VOIDmode, 0);
  3289.       if (temp != subtarget)
  3290.         temp = copy_to_reg (temp);
  3291.       op1 = gen_label_rtx ();
  3292.       emit_cmp_insn (temp, const0_rtx, 0, TREE_UNSIGNED (type), 0);
  3293.       emit_jump_insn (gen_beq (op1));
  3294.       emit_move_insn (temp, const1_rtx);
  3295.       emit_label (op1);
  3296.       return temp;
  3297.     }
  3298.       /* If no set-flag instruction, must generate a conditional
  3299.      store into a temporary variable.  Drop through
  3300.      and handle this like && and ||.  */
  3301.  
  3302.     case TRUTH_ANDIF_EXPR:
  3303.     case TRUTH_ORIF_EXPR:
  3304.       temp = gen_reg_rtx (mode);
  3305.       emit_clr_insn (temp);
  3306.       op1 = gen_label_rtx ();
  3307.       jumpifnot (exp, op1);
  3308.       emit_0_to_1_insn (temp);
  3309.       emit_label (op1);
  3310.       return temp;
  3311.  
  3312.     case TRUTH_NOT_EXPR:
  3313.       op0 = expand_expr (TREE_OPERAND (exp, 0), target, VOIDmode, 0);
  3314.       /* The parser is careful to generate TRUTH_NOT_EXPR
  3315.      only with operands that are always zero or one.  */
  3316.       temp = expand_binop (mode, xor_optab, op0,
  3317.                gen_rtx (CONST_INT, mode, 1),
  3318.                target, 1, OPTAB_LIB_WIDEN);
  3319.       if (temp == 0)
  3320.     abort ();
  3321.       return temp;
  3322.  
  3323.     case COMPOUND_EXPR:
  3324.       expand_expr (TREE_OPERAND (exp, 0), const0_rtx, VOIDmode, 0);
  3325.       emit_queue ();
  3326.       return expand_expr (TREE_OPERAND (exp, 1), target, VOIDmode, 0);
  3327.  
  3328.     case COND_EXPR:
  3329.       /* Note that COND_EXPRs whose type is a structure or union
  3330.      are required to be constructed to contain assignments of
  3331.      a temporary variable, so that we can evaluate them here
  3332.      for side effect only.  If type is void, we must do likewise.  */
  3333.       op0 = gen_label_rtx ();
  3334.       op1 = gen_label_rtx ();
  3335.  
  3336.       if (mode == VOIDmode || ignore)
  3337.     temp = 0;
  3338.       else if (target)
  3339.     temp = target;
  3340.       else if (mode == BLKmode)
  3341.     {
  3342.       if (TYPE_SIZE (type) == 0 || ! TREE_LITERAL (TYPE_SIZE (type)))
  3343.         abort ();
  3344.       temp = assign_stack_local (BLKmode,
  3345.                      (TREE_INT_CST_LOW (TYPE_SIZE (type))
  3346.                       * TYPE_SIZE_UNIT (type)
  3347.                       + BITS_PER_UNIT - 1)
  3348.                      / BITS_PER_UNIT);
  3349.     }
  3350.       else
  3351.     temp = gen_reg_rtx (mode);
  3352.  
  3353.       jumpifnot (TREE_OPERAND (exp, 0), op0);
  3354.       NO_DEFER_POP;
  3355.       if (temp != 0)
  3356.     store_expr (TREE_OPERAND (exp, 1), temp, 0);
  3357.       else
  3358.     expand_expr (TREE_OPERAND (exp, 1), ignore ? const0_rtx : 0,
  3359.              VOIDmode, 0);
  3360.       emit_queue ();
  3361.       emit_jump_insn (gen_jump (op1));
  3362.       emit_barrier ();
  3363.       emit_label (op0);
  3364.       if (temp != 0)
  3365.     store_expr (TREE_OPERAND (exp, 2), temp, 0);
  3366.       else
  3367.     expand_expr (TREE_OPERAND (exp, 2), ignore ? const0_rtx : 0,
  3368.              VOIDmode, 0);
  3369.       emit_queue ();
  3370.       emit_label (op1);
  3371.       OK_DEFER_POP;
  3372.       return temp;
  3373.  
  3374.     case MODIFY_EXPR:
  3375.       {
  3376.     /* If lhs is complex, expand calls in rhs before computing it.
  3377.        That's so we don't compute a pointer and save it over a call.
  3378.        If lhs is simple, compute it first so we can give it as a
  3379.        target if the rhs is just a call.  This avoids an extra temp and copy
  3380.        and that prevents a partial-subsumption which makes bad code.
  3381.        Actually we could treat component_ref's of vars like vars.  */
  3382.  
  3383.     tree lhs = TREE_OPERAND (exp, 0);
  3384.     tree rhs = TREE_OPERAND (exp, 1);
  3385.     tree noncopied_parts;
  3386.  
  3387.     if (TREE_CODE (lhs) != VAR_DECL
  3388.         && TREE_CODE (lhs) != RESULT_DECL
  3389.         && TREE_CODE (lhs) != PARM_DECL)
  3390.       preexpand_calls (exp);
  3391.  
  3392.     noncopied_parts = save_noncopied_parts (lhs, TYPE_NONCOPIED_PARTS (TREE_TYPE (lhs)));
  3393.     temp = expand_assignment (lhs, rhs, ! ignore, original_target != 0);
  3394.     while (noncopied_parts != 0)
  3395.       {
  3396.         store_expr (TREE_VALUE (noncopied_parts),
  3397.             SAVE_EXPR_RTL (TREE_PURPOSE (noncopied_parts)), 0);
  3398.         noncopied_parts = TREE_CHAIN (noncopied_parts);
  3399.       }
  3400.     return temp;
  3401.       }
  3402.  
  3403.     case PREINCREMENT_EXPR:
  3404.     case PREDECREMENT_EXPR:
  3405.       return expand_increment (exp, 0);
  3406.  
  3407.     case POSTINCREMENT_EXPR:
  3408.     case POSTDECREMENT_EXPR:
  3409.       return expand_increment (exp, 1);
  3410.  
  3411.     case ADDR_EXPR:
  3412.       op0 = expand_expr (TREE_OPERAND (exp, 0), 0, VOIDmode,
  3413.              EXPAND_CONST_ADDRESS);
  3414.       if (GET_CODE (op0) != MEM)
  3415.     abort ();
  3416.       if (modifier == EXPAND_SUM)
  3417.     return XEXP (op0, 0);
  3418.       op0 = force_operand (XEXP (op0, 0), target);
  3419.       if (flag_force_addr && GET_CODE (op0) != REG)
  3420.     return force_reg (Pmode, op0);
  3421.       return op0;
  3422.  
  3423.     case ENTRY_VALUE_EXPR:
  3424.       abort ();
  3425.  
  3426.     case ERROR_MARK:
  3427.       return const0_rtx;
  3428.  
  3429.     default:
  3430.       abort ();
  3431.     }
  3432.  
  3433.   /* Here to do an ordinary binary operator, generating an instruction
  3434.      from the optab already placed in `this_optab'.  */
  3435.  binop:
  3436.   /* Detect things like x = y | (a == b)
  3437.      and do them as (x = y), (a == b ? x |= 1 : 0), x.  */
  3438.   /* First, get the comparison or conditional into the second arg.  */
  3439.   if (comparison_code[(int) TREE_CODE (TREE_OPERAND (exp, 0))]
  3440.       || (TREE_CODE (TREE_OPERAND (exp, 0)) == COND_EXPR
  3441.       && (integer_zerop (TREE_OPERAND (TREE_OPERAND (exp, 0), 1))
  3442.           || integer_zerop (TREE_OPERAND (TREE_OPERAND (exp, 0), 2)))))
  3443.     {
  3444.       if (this_optab == ior_optab || this_optab == add_optab
  3445.       || this_optab == xor_optab)
  3446.     {
  3447.       tree exch = TREE_OPERAND (exp, 1);
  3448.       TREE_OPERAND (exp, 1) = TREE_OPERAND (exp, 0);
  3449.       TREE_OPERAND (exp, 0) = exch;
  3450.     }
  3451.     }
  3452.   /* Optimize X + (Y ? Z : 0) by computing X and maybe adding Z.  */
  3453.   if (comparison_code[(int) TREE_CODE (TREE_OPERAND (exp, 1))]
  3454.       || (TREE_CODE (TREE_OPERAND (exp, 1)) == COND_EXPR
  3455.       && (integer_zerop (TREE_OPERAND (TREE_OPERAND (exp, 1), 1))
  3456.           || integer_zerop (TREE_OPERAND (TREE_OPERAND (exp, 1), 2)))))
  3457.     {
  3458.       if (this_optab == ior_optab || this_optab == add_optab
  3459.       || this_optab == xor_optab || this_optab == sub_optab
  3460.       || this_optab == lshl_optab || this_optab == ashl_optab
  3461.       || this_optab == lshr_optab || this_optab == ashr_optab
  3462.       || this_optab == rotl_optab || this_optab == rotr_optab)
  3463.     {
  3464.       tree thenexp;
  3465.       rtx thenv = 0;
  3466.  
  3467.       /* TARGET gets a reg in which we can perform the computation.
  3468.          Use the specified target if it's a pseudo reg and safe.  */
  3469.       target = validate_subtarget (subtarget, TREE_OPERAND (exp, 1));
  3470.       if (target == 0) target = gen_reg_rtx (mode);
  3471.  
  3472.       /* Compute X into the target.  */
  3473.       store_expr (TREE_OPERAND (exp, 0), target, 0);
  3474.       op0 = gen_label_rtx ();
  3475.  
  3476.       /* If other operand is a comparison COMP, treat it as COMP ? 1 : 0 */
  3477.       if (TREE_CODE (TREE_OPERAND (exp, 1)) != COND_EXPR)
  3478.         {
  3479.           do_jump (TREE_OPERAND (exp, 1), op0, 0);
  3480.           thenv = const1_rtx;
  3481.         }
  3482.       else if (integer_zerop (TREE_OPERAND (TREE_OPERAND (exp, 1), 2)))
  3483.         {
  3484.           do_jump (TREE_OPERAND (TREE_OPERAND (exp, 1), 0), op0, 0);
  3485.           thenexp = TREE_OPERAND (TREE_OPERAND (exp, 1), 1);
  3486.         }
  3487.       else
  3488.         {
  3489.           do_jump (TREE_OPERAND (TREE_OPERAND (exp, 1), 0), 0, op0);
  3490.           thenexp = TREE_OPERAND (TREE_OPERAND (exp, 1), 2);
  3491.         }
  3492.  
  3493.       if (thenv == 0)
  3494.         thenv = expand_expr (thenexp, 0, VOIDmode, 0);
  3495.  
  3496.       /* THENV is now Z, the value to operate on, as an rtx.
  3497.          We have already tested that Y isn't zero, so do the operation.  */
  3498.  
  3499.       if (this_optab == rotl_optab || this_optab == rotr_optab)
  3500.         temp = expand_binop (mode, this_optab, target, thenv, target,
  3501.                  -1, OPTAB_LIB);
  3502.       else if (this_optab == lshl_optab || this_optab == lshr_optab)
  3503.         temp = expand_binop (mode, this_optab, target, thenv, target,
  3504.                  1, OPTAB_LIB_WIDEN);
  3505.       else
  3506.         temp = expand_binop (mode, this_optab, target, thenv, target,
  3507.                  0, OPTAB_LIB_WIDEN);
  3508.       if (target != temp)
  3509.         emit_move_insn (target, temp);
  3510.  
  3511.       emit_queue ();
  3512.       do_pending_stack_adjust ();
  3513.       emit_label (op0);
  3514.       return target;
  3515.     }
  3516.     }
  3517.   subtarget = validate_subtarget (subtarget, TREE_OPERAND (exp, 1));
  3518.   op0 = expand_expr (TREE_OPERAND (exp, 0), subtarget, VOIDmode, 0);
  3519.   op1 = expand_expr (TREE_OPERAND (exp, 1), 0, VOIDmode, 0);
  3520.  binop2:
  3521. #if defined( DSP56000 ) || defined( DSP96000 )
  3522.   /* it is possible that the operands to a Pmode PLUS_EXPR are ordered 
  3523.    * backwards. The insn (shape) defines op0 to to be Pmode and op1 to
  3524.    * be SImode. We might see the operands in the wrong oder here. The
  3525.    * exp is still correct, but expand_binop in optabs.c will munge the
  3526.    * SImode operand into Pmode and the Pmode operand into SImode. In
  3527.    * order for expand_binop to work correctly with pointer adds, we need
  3528.    * to ensure that the order of the operands will match the shape at
  3529.    * this point.
  3530.    */
  3531.   if (( PLUS_EXPR == code ) &&
  3532.       ( Pmode != SImode ) &&
  3533.       ( Pmode == GET_MODE ( op1 )))
  3534.   {
  3535.       rtx swap = op1;
  3536.       
  3537.       op1 = op0;
  3538.       op0 = swap;
  3539.   }
  3540. #endif
  3541.   temp = expand_binop (mode, this_optab, op0, op1, target,
  3542.                TREE_UNSIGNED (TREE_TYPE (exp)), OPTAB_LIB_WIDEN);
  3543.   if (temp == 0)
  3544.     abort ();
  3545.   return temp;
  3546. }
  3547.  
  3548. /* Expand an expression EXP that calls a built-in function,
  3549.    with result going to TARGET if that's convenient
  3550.    (and in mode MODE if that's convenient).
  3551.    SUBTARGET may be used as the target for computing one of EXP's operands.
  3552.    IGNORE is nonzero if the value is to be ignored.  */
  3553.  
  3554. static rtx
  3555. expand_builtin (exp, target, subtarget, mode, ignore)
  3556.      tree exp;
  3557.      rtx target;
  3558.      rtx subtarget;
  3559.      enum machine_mode mode;
  3560.      int ignore;
  3561. {
  3562.   tree fndecl = TREE_OPERAND (TREE_OPERAND (exp, 0), 0);
  3563.   tree arglist = TREE_OPERAND (exp, 1);
  3564.   rtx op0;
  3565.  
  3566.   switch (DECL_FUNCTION_CODE (fndecl))
  3567.     {
  3568.     case BUILT_IN_ABS:
  3569.     case BUILT_IN_LABS:
  3570.     case BUILT_IN_FABS:
  3571.       /* build_function_call changes these into ABS_EXPR.  */
  3572.       abort ();
  3573.  
  3574.     case BUILT_IN_SAVEREGS:
  3575.       {
  3576.     /* When this function is called, it means that registers must be
  3577.        saved on entry to this function.  So we migrate the
  3578.        call to the first insn of this function.  */
  3579.     rtx last = get_last_insn ();
  3580.     /* Now really call the function.  `expand_call' does not call
  3581.        expand_builtin, so there is no danger of infinite recursion here.  */
  3582.     rtx temp = expand_call (exp, target, ignore);
  3583.     reorder_insns (NEXT_INSN (last), get_last_insn (), get_insns ());
  3584.     return temp;
  3585.       }
  3586.  
  3587.     case BUILT_IN_CLASSIFY_TYPE:
  3588.       if (arglist != 0)
  3589.     {
  3590.       tree type = TREE_TYPE (TREE_VALUE (arglist));
  3591.       enum tree_code code = TREE_CODE (type);
  3592.       if (code == VOID_TYPE)
  3593.         return gen_rtx (CONST_INT, VOIDmode, void_type_class);
  3594.       if (code == INTEGER_TYPE)
  3595.         return gen_rtx (CONST_INT, VOIDmode, integer_type_class);
  3596.       if (code == CHAR_TYPE)
  3597.         return gen_rtx (CONST_INT, VOIDmode, char_type_class);
  3598.       if (code == ENUMERAL_TYPE)
  3599.         return gen_rtx (CONST_INT, VOIDmode, enumeral_type_class);
  3600.       if (code == BOOLEAN_TYPE)
  3601.         return gen_rtx (CONST_INT, VOIDmode, boolean_type_class);
  3602.       if (code == POINTER_TYPE)
  3603.         return gen_rtx (CONST_INT, VOIDmode, pointer_type_class);
  3604.       if (code == REFERENCE_TYPE)
  3605.         return gen_rtx (CONST_INT, VOIDmode, reference_type_class);
  3606.       if (code == OFFSET_TYPE)
  3607.         return gen_rtx (CONST_INT, VOIDmode, offset_type_class);
  3608.       if (code == REAL_TYPE)
  3609.         return gen_rtx (CONST_INT, VOIDmode, real_type_class);
  3610.       if (code == COMPLEX_TYPE)
  3611.         return gen_rtx (CONST_INT, VOIDmode, complex_type_class);
  3612.       if (code == FUNCTION_TYPE)
  3613.         return gen_rtx (CONST_INT, VOIDmode, function_type_class);
  3614.       if (code == METHOD_TYPE)
  3615.         return gen_rtx (CONST_INT, VOIDmode, method_type_class);
  3616.       if (code == RECORD_TYPE)
  3617.         return gen_rtx (CONST_INT, VOIDmode, record_type_class);
  3618.       if (code == UNION_TYPE)
  3619.         return gen_rtx (CONST_INT, VOIDmode, union_type_class);
  3620.       if (code == ARRAY_TYPE)
  3621.         return gen_rtx (CONST_INT, VOIDmode, array_type_class);
  3622.       if (code == STRING_TYPE)
  3623.         return gen_rtx (CONST_INT, VOIDmode, string_type_class);
  3624.       if (code == SET_TYPE)
  3625.         return gen_rtx (CONST_INT, VOIDmode, set_type_class);
  3626.       if (code == FILE_TYPE)
  3627.         return gen_rtx (CONST_INT, VOIDmode, file_type_class);
  3628.       if (code == LANG_TYPE)
  3629.         return gen_rtx (CONST_INT, VOIDmode, lang_type_class);
  3630.     }
  3631.       return gen_rtx (CONST_INT, VOIDmode, no_type_class);
  3632.  
  3633.     case BUILT_IN_ALLOCA:
  3634.       if (arglist == 0
  3635.       /* Arg could be non-integer if user redeclared this fcn wrong.  */
  3636.       || TREE_CODE (TREE_TYPE (TREE_VALUE (arglist))) != INTEGER_TYPE)
  3637.     return const0_rtx;
  3638.       frame_pointer_needed = 1;
  3639.       current_function_calls_alloca = 1;
  3640.       /* Compute the argument.  */
  3641.       op0 = expand_expr (TREE_VALUE (arglist), 0, VOIDmode, 0);
  3642.       if (! CONSTANT_P (op0))
  3643.     {
  3644.       op0 = force_reg (GET_MODE (op0), op0);
  3645.       if (GET_MODE (op0) != Pmode)
  3646.         op0 = convert_to_mode (Pmode, op0, 1);
  3647.     }
  3648.       /* Push that much space (rounding it up).  */
  3649.       do_pending_stack_adjust ();
  3650.  
  3651. #ifdef STACK_POINTER_OFFSET
  3652.       /* If we will have to round the result down (which is up
  3653.      if stack grows down), make sure we have extra space so the
  3654.      user still gets at least as much space as he asked for.  */
  3655.       if ((STACK_POINTER_OFFSET + STACK_BYTES - 1) / STACK_BYTES
  3656.       != STACK_POINTER_OFFSET / STACK_BYTES)
  3657.     op0 = plus_constant (op0, STACK_BYTES);
  3658. #endif
  3659.  
  3660. #ifdef STACK_GROWS_DOWNWARD
  3661.       anti_adjust_stack (round_push (op0));
  3662. #endif
  3663.       /* Return a copy of current stack ptr, in TARGET if possible.  */
  3664.       if (target)
  3665.     emit_move_insn (target, stack_pointer_rtx);
  3666.       else
  3667.     target = copy_to_reg (stack_pointer_rtx);
  3668. #ifdef STACK_POINTER_OFFSET
  3669.       /* If the contents of the stack pointer reg are offset from the
  3670.      actual top-of-stack address, add the offset here.  */
  3671.       if (GET_CODE (target) == REG)
  3672.     emit_insn (gen_add2_insn (target,
  3673.                   gen_rtx (CONST_INT, VOIDmode,
  3674.                        (STACK_POINTER_OFFSET + STACK_BYTES - 1) / STACK_BYTES * STACK_BYTES)));
  3675.       else
  3676.     {
  3677.       rtx temp =
  3678.         expand_binop (GET_MODE (target), add_optab, target,
  3679.               gen_rtx (CONST_INT, VOIDmode,
  3680.                    (STACK_POINTER_OFFSET + STACK_BYTES - 1) / STACK_BYTES * STACK_BYTES),
  3681.               target,
  3682.               1, OPTAB_DIRECT);
  3683.       if (temp == 0) abort ();
  3684.       if (temp != target)
  3685.         emit_move_insn (target, temp);
  3686.     }
  3687. #endif
  3688. #ifndef STACK_GROWS_DOWNWARD
  3689.       anti_adjust_stack (round_push (op0));
  3690. #endif
  3691.       /* Some systems require a particular insn to refer to the stack
  3692.      to make the pages exist.  */
  3693. #ifdef HAVE_probe
  3694.       if (HAVE_probe)
  3695.     emit_insn (gen_probe ());
  3696. #endif
  3697.       return target;
  3698.  
  3699.     case BUILT_IN_FFS:
  3700.       if (arglist == 0
  3701.       /* Arg could be non-integer if user redeclared this fcn wrong.  */
  3702.       || TREE_CODE (TREE_TYPE (TREE_VALUE (arglist))) != INTEGER_TYPE)
  3703.     return const0_rtx;
  3704.  
  3705.       /* Compute the argument.  */
  3706.       op0 = expand_expr (TREE_VALUE (arglist), subtarget, VOIDmode, 0);
  3707.       /* Compute ffs, into TARGET if possible.
  3708.      Set TARGET to wherever the result comes back.  */
  3709.       target = expand_unop (mode, ffs_optab, op0, target, 1);
  3710.       if (target == 0)
  3711.     abort ();
  3712.       return target;
  3713.  
  3714.     default:
  3715.       abort ();
  3716.     }
  3717. }
  3718.  
  3719. /* Expand code for a post- or pre- increment or decrement
  3720.    and return the RTX for the result.
  3721.    POST is 1 for postinc/decrements and 0 for preinc/decrements.  */
  3722.  
  3723. static rtx
  3724. expand_increment (exp, post)
  3725.      register tree exp;
  3726.      int post;
  3727. {
  3728.   register rtx op0, op1;
  3729.   register rtx temp;
  3730.   register tree incremented = TREE_OPERAND (exp, 0);
  3731.   optab this_optab = add_optab;
  3732.   int icode;
  3733.   enum machine_mode mode = TYPE_MODE (TREE_TYPE (exp));
  3734.   int op0_is_copy = 0;
  3735.  
  3736.   /* Stabilize any component ref that might need to be
  3737.      evaluated more than once below.  */
  3738.   if (TREE_CODE (incremented) == COMPONENT_REF
  3739.       && (TREE_CODE (TREE_OPERAND (incremented, 0)) != INDIRECT_REF
  3740.       || DECL_MODE (TREE_OPERAND (incremented, 1)) == BImode))
  3741.     incremented = stabilize_reference (incremented);
  3742.  
  3743.   /* Compute the operands as RTX.
  3744.      Note whether OP0 is the actual lvalue or a copy of it:
  3745.      I believe it is a copy iff it is a register and insns were
  3746.      generated in computing it.  */
  3747.   temp = get_last_insn ();
  3748.   op0 = expand_expr (incremented, 0, VOIDmode, 0);
  3749.   if (temp != get_last_insn ())
  3750.     op0_is_copy = (GET_CODE (op0) == REG || GET_CODE (op0) == SUBREG);
  3751.   op1 = expand_expr (TREE_OPERAND (exp, 1), 0, VOIDmode, 0);
  3752.  
  3753.   /* Decide whether incrementing or decrementing.  */
  3754.   if (TREE_CODE (exp) == POSTDECREMENT_EXPR
  3755.       || TREE_CODE (exp) == PREDECREMENT_EXPR)
  3756.     this_optab = sub_optab;
  3757.  
  3758.   /* If OP0 is not the actual lvalue, but rather a copy in a register,
  3759.      then we cannot just increment OP0.  We must
  3760.      therefore contrive to increment the original value.
  3761.      Then we can return OP0 since it is a copy of the old value.  */
  3762.   if (op0_is_copy)
  3763.     {
  3764.       /* This is the easiest way to increment the value wherever it is.
  3765.      Problems with multiple evaluation of INCREMENTED
  3766.      are prevented because either (1) it is a component_ref,
  3767.      in which case it was stabilized above, or (2) it is an array_ref
  3768.      with constant index in an array in a register, which is
  3769.      safe to reevaluate.  */
  3770.       tree newexp = build ((this_optab == add_optab
  3771.                 ? PLUS_EXPR : MINUS_EXPR),
  3772.                TREE_TYPE (exp),
  3773.                incremented,
  3774.                TREE_OPERAND (exp, 1));
  3775.       temp = expand_assignment (incremented, newexp, ! post, 0);
  3776.       return post ? op0 : temp;
  3777.     }
  3778.  
  3779.   /* Convert decrement by a constant into a negative increment.  */
  3780.   if (this_optab == sub_optab
  3781.       && GET_CODE (op1) == CONST_INT)
  3782.     {
  3783.       op1 = gen_rtx (CONST_INT, VOIDmode, - INTVAL (op1));
  3784.       this_optab = add_optab;
  3785.     }
  3786.  
  3787.   if (post)
  3788.     {
  3789.       /* We have a true reference to the value in OP0.
  3790.      If there is an insn to add or subtract in this mode, queue it.  */
  3791.  
  3792.       /* I'm not sure this is still necessary.  */
  3793.       op0 = stabilize (op0);
  3794.  
  3795.       icode = (int) this_optab->handlers[(int) mode].insn_code;
  3796.       if (icode != (int) CODE_FOR_nothing
  3797.       /* Make sure that OP0 is valid for operands 0 and 1
  3798.          of the insn we want to queue.  */
  3799.       && (*insn_operand_predicate[icode][0]) (op0, mode)
  3800.       && (*insn_operand_predicate[icode][1]) (op0, mode))
  3801.     {
  3802.       if (! (*insn_operand_predicate[icode][2]) (op1, mode))
  3803.         op1 = force_reg (mode, op1);
  3804.  
  3805.       return enqueue_insn (op0, GEN_FCN (icode) (op0, op0, op1));
  3806.     }
  3807.     }
  3808.  
  3809.   /* Preincrement, or we can't increment with one simple insn.  */
  3810.   if (post)
  3811.     /* Save a copy of the value before inc or dec, to return it later.  */
  3812.     temp = copy_to_reg (op0);
  3813.   else
  3814.     /* Arrange to return the incremented value.  */
  3815.     /* Copy the rtx because expand_binop will protect from the queue,
  3816.        and the results of that would be invalid for us to return
  3817.        if our caller does emit_queue before using our result.  */
  3818.     temp = copy_rtx (op0);
  3819.  
  3820.   /* Increment however we can.  */
  3821.   op1 = expand_binop (mode, this_optab, op0, op1, op0,
  3822.               TREE_UNSIGNED (TREE_TYPE (exp)), OPTAB_LIB_WIDEN);
  3823.   /* Make sure the value is stored into OP0.  */
  3824.   if (op1 != op0)
  3825.     emit_move_insn (op0, op1);
  3826.  
  3827.   return temp;
  3828. }
  3829.  
  3830. /* Expand all function calls contained within EXP, innermost ones first.
  3831.    But don't look within expressions that have sequence points.
  3832.    For each CALL_EXPR, record the rtx for its value
  3833.    in the CALL_EXPR_RTL field.
  3834.  
  3835.    Calls that return large structures for which a structure return
  3836.    stack slot is needed are not preexpanded.  Preexpanding them loses
  3837.    because if more than one were preexpanded they would try to use the
  3838.    same stack slot.  */
  3839.  
  3840. static void
  3841. preexpand_calls (exp)
  3842.      tree exp;
  3843. {
  3844.   register int nops, i;
  3845.  
  3846.   if (! do_preexpand_calls)
  3847.     return;
  3848.  
  3849.   /* Only expressions and references can contain calls.  */
  3850.  
  3851.   if (tree_code_type[(int) TREE_CODE (exp)][0] != 'e'
  3852.       && tree_code_type[(int) TREE_CODE (exp)][0] != 'r')
  3853.     return;
  3854.  
  3855.   switch (TREE_CODE (exp))
  3856.     {
  3857.     case CALL_EXPR:
  3858.       /* Do nothing to built-in functions.  */
  3859.       if (TREE_CODE (TREE_OPERAND (exp, 0)) == ADDR_EXPR
  3860.       && TREE_CODE (TREE_OPERAND (TREE_OPERAND (exp, 0), 0)) == FUNCTION_DECL
  3861.       && (DECL_FUNCTION_CODE (TREE_OPERAND (TREE_OPERAND (exp, 0), 0))
  3862.           != NOT_BUILT_IN))
  3863.     return;
  3864.       /* Precompute calls that don't return values in memory.  */
  3865.       if (CALL_EXPR_RTL (exp) == 0
  3866.       && TYPE_MODE (TREE_TYPE (exp)) != BLKmode
  3867.       && ! RETURN_IN_MEMORY (TREE_TYPE (exp)))
  3868.     CALL_EXPR_RTL (exp) = expand_call (exp, 0, 0);
  3869.       return;
  3870.  
  3871.     case COMPOUND_EXPR:
  3872.     case COND_EXPR:
  3873.     case TRUTH_ANDIF_EXPR:
  3874.     case TRUTH_ORIF_EXPR:
  3875.       /* If we find one of these, then we can be sure
  3876.      the adjust will be done for it (since it makes jumps).
  3877.      Do it now, so that if this is inside an argument
  3878.      of a function, we don't get the stack adjustment
  3879.      after some other args have already been pushed.  */
  3880.       do_pending_stack_adjust ();
  3881.       return;
  3882.  
  3883.     case RTL_EXPR:
  3884.       return;
  3885.  
  3886.     case SAVE_EXPR:
  3887.       if (SAVE_EXPR_RTL (exp) != 0)
  3888.     return;
  3889.     }
  3890.  
  3891.   nops = tree_code_length[(int) TREE_CODE (exp)];
  3892.   for (i = 0; i < nops; i++)
  3893.     if (TREE_OPERAND (exp, i) != 0)
  3894.       {
  3895.     register int type = *tree_code_type[(int) TREE_CODE (TREE_OPERAND (exp, i))];
  3896.     if (type == 'e' || type == 'r')
  3897.       preexpand_calls (TREE_OPERAND (exp, i));
  3898.       }
  3899. }
  3900.  
  3901. /* Force FUNEXP into a form suitable for the address of a CALL,
  3902.    and return that as an rtx.  Also load the static chain register
  3903.    from either FUNEXP or CONTEXT.  */
  3904.  
  3905. static rtx
  3906. prepare_call_address (funexp, context)
  3907.      rtx funexp;
  3908.      rtx context;
  3909. {
  3910.   funexp = protect_from_queue (funexp, 0);
  3911.   if (context != 0)
  3912.     context = protect_from_queue (context, 0);
  3913.  
  3914.   /* Function variable in language with nested functions.  */
  3915.   if (GET_MODE (funexp) == EPmode)
  3916.     {
  3917.       emit_move_insn (static_chain_rtx, gen_highpart (Pmode, funexp));
  3918.       funexp = memory_address (FUNCTION_MODE, gen_lowpart (Pmode, funexp));
  3919.       emit_insn (gen_rtx (USE, VOIDmode, static_chain_rtx));
  3920.     }
  3921.   else
  3922.     {
  3923.       if (context != 0)
  3924.     /* Unless function variable in C, or top level function constant */
  3925.     emit_move_insn (static_chain_rtx, lookup_static_chain (context));
  3926.  
  3927.       /* Make a valid memory address and copy constants thru pseudo-regs,
  3928.      but not for a constant address if -fno-function-cse.  */
  3929.       if (GET_CODE (funexp) != SYMBOL_REF)
  3930.     funexp = memory_address (FUNCTION_MODE, funexp);
  3931.       else
  3932.     {
  3933. #ifndef NO_FUNCTION_CSE
  3934.       if (optimize && ! flag_no_function_cse)
  3935.         funexp = force_reg (Pmode, funexp);
  3936. #endif
  3937.     }
  3938.  
  3939.       if (context != 0)
  3940.     emit_insn (gen_rtx (USE, VOIDmode, static_chain_rtx));
  3941.     }
  3942.   return funexp;
  3943. }
  3944.  
  3945. /* Generate instructions to call function FUNEXP,
  3946.    and optionally pop the results.
  3947.    The CALL_INSN is the first insn generated.
  3948.  
  3949.    FUNTYPE is the data type of the function, or, for a library call,
  3950.    the identifier for the name of the call.  This is given to the
  3951.    macro RETURN_POPS_ARGS to determine whether this function pops its own args.
  3952.  
  3953.    STACK_SIZE is the number of bytes of arguments on the stack,
  3954.    rounded up to STACK_BOUNDARY; zero if the size is variable.
  3955.    This is both to put into the call insn and
  3956.    to generate explicit popping code if necessary.
  3957.  
  3958.    NEXT_ARG_REG is the rtx that results from executing
  3959.      FUNCTION_ARG (args_so_far, VOIDmode, void_type_node, 1)
  3960.    just after all the args have had their registers assigned.
  3961.    This could be whatever you like, but normally it is the first
  3962.    arg-register beyond those used for args in this call,
  3963.    or 0 if all the arg-registers are used in this call.
  3964.    It is passed on to `gen_call' so you can put this info in the call insn.
  3965.  
  3966.    VALREG is a hard register in which a value is returned,
  3967.    or 0 if the call does not return a value.
  3968.  
  3969.    OLD_INHIBIT_DEFER_POP is the value that `inhibit_defer_pop' had before
  3970.    the args to this call were processed.
  3971.    We restore `inhibit_defer_pop' to that value.
  3972.  
  3973.    USE_INSNS is a SEQUENCE of USE insns to be emitted immediately before
  3974.    the actual CALL insn.  */
  3975.  
  3976. static void
  3977. emit_call_1 (funexp, funtype, stack_size, next_arg_reg, valreg, old_inhibit_defer_pop, use_insns)
  3978.      rtx funexp;
  3979.      tree funtype;
  3980.      int stack_size;
  3981.      rtx next_arg_reg;
  3982.      rtx valreg;
  3983.      int old_inhibit_defer_pop;
  3984.      rtx use_insns;
  3985. {
  3986.   rtx stack_size_rtx = gen_rtx (CONST_INT, VOIDmode, stack_size);
  3987.   rtx call_insn;
  3988.  
  3989.   if (valreg)
  3990.     emit_call_insn (gen_call_value (valreg,
  3991.                     gen_rtx (MEM, FUNCTION_MODE, funexp),
  3992.                     stack_size_rtx, next_arg_reg));
  3993.   else
  3994.     emit_call_insn (gen_call (gen_rtx (MEM, FUNCTION_MODE, funexp),
  3995.                   stack_size_rtx, next_arg_reg));
  3996.  
  3997.   /* Find the CALL insn we just emitted and write the USE insns before it.  */
  3998.   for (call_insn = get_last_insn();
  3999.        call_insn && GET_CODE (call_insn) != CALL_INSN;
  4000.        call_insn = PREV_INSN (call_insn))
  4001.     ;
  4002.  
  4003.   if (! call_insn)
  4004.     abort ();
  4005.  
  4006.   /* Put the USE insns before the CALL.  */
  4007.   emit_insn_before (use_insns, call_insn);
  4008.  
  4009.   inhibit_defer_pop = old_inhibit_defer_pop;
  4010.  
  4011.   /* If returning from the subroutine does not automatically pop the args,
  4012.      we need an instruction to pop them sooner or later.
  4013.      Perhaps do it now; perhaps just record how much space to pop later.  */
  4014.  
  4015.   if (! RETURN_POPS_ARGS (TREE_TYPE (funtype))
  4016.       && stack_size != 0)
  4017.     {
  4018.       if (flag_defer_pop && inhibit_defer_pop == 0)
  4019.     pending_stack_adjust += stack_size;
  4020.       else
  4021.     adjust_stack (stack_size_rtx);
  4022.     }
  4023. }
  4024.  
  4025. /* At the start of a function, record that we have no previously-pushed
  4026.    arguments waiting to be popped.  */
  4027.  
  4028. void
  4029. init_pending_stack_adjust ()
  4030. {
  4031.   pending_stack_adjust = 0;
  4032. }
  4033.  
  4034. /* When exiting from function, if safe, clear out any pending stack adjust
  4035.    so the adjustment won't get done.  */
  4036.  
  4037. void
  4038. clear_pending_stack_adjust ()
  4039. {
  4040. #ifdef EXIT_IGNORE_STACK
  4041.   if (!flag_omit_frame_pointer && EXIT_IGNORE_STACK
  4042.       && ! TREE_INLINE (current_function_decl)
  4043.       && ! flag_inline_functions)
  4044.     pending_stack_adjust = 0;
  4045. #endif
  4046. }
  4047.  
  4048. /* Pop any previously-pushed arguments that have not been popped yet.  */
  4049.  
  4050. void
  4051. do_pending_stack_adjust ()
  4052. {
  4053.   if (inhibit_defer_pop == 0)
  4054.     {
  4055.       if (pending_stack_adjust != 0)
  4056.     adjust_stack (gen_rtx (CONST_INT, VOIDmode, pending_stack_adjust));
  4057.       pending_stack_adjust = 0;
  4058.     }
  4059. }
  4060.  
  4061. /* Data structure and subroutines used within expand_call.  */
  4062.  
  4063. struct arg_data
  4064. {
  4065.   /* Tree node for this argument.  */
  4066.   tree tree_value;
  4067.   /* Precomputed RTL value, or 0 if it isn't precomputed.  */
  4068.   rtx value;
  4069.   /* Register to pass this argument in, or 0 if passed on stack.  */
  4070.   rtx reg;
  4071.   /* Number of registers to use.  0 means put the whole arg in registers.
  4072.      Also 0 if not passed in registers.  */
  4073.   int partial;
  4074.   /* Offset of this argument from beginning of stack-args.  */
  4075.   struct args_size offset;
  4076.   /* Size of this argument on the stack, rounded up for any padding it gets,
  4077.      parts of the argument passed in registers do not count.
  4078.      If the FIRST_PARM_CALLER_OFFSET is negative, then register parms
  4079.      are counted here as well.  */
  4080.   struct args_size size;
  4081.   /* Nonzero if this arg has already been stored.  */
  4082.   int stored;
  4083.   /* const0_rtx means should preallocate stack space for this arg.
  4084.      Other non0 value is the stack slot, preallocated.
  4085.      Used only for BLKmode.  */
  4086.   rtx stack;
  4087. };
  4088.  
  4089. static void store_one_arg ();
  4090. static rtx target_for_arg ();
  4091.  
  4092. /* Generate all the code for a function call
  4093.    and return an rtx for its value.
  4094.    Store the value in TARGET (specified as an rtx) if convenient.
  4095.    If the value is stored in TARGET then TARGET is returned.
  4096.    If IGNORE is nonzero, then we ignore the value of the function call.  */
  4097.  
  4098. static rtx
  4099. expand_call (exp, target, ignore)
  4100.      tree exp;
  4101.      rtx target;
  4102.      int ignore;
  4103. {
  4104.   /* List of actual parameters.  */
  4105.   tree actparms = TREE_OPERAND (exp, 1);
  4106.   /* RTX for the function to be called.  */
  4107.   rtx funexp;
  4108.   /* Data type of the function.  */
  4109.   tree funtype;
  4110.   /* Declaration of the function being called,
  4111.      or 0 if the function is computed (not known by name).  */
  4112.   tree fndecl = 0;
  4113.  
  4114.   /* Register in which non-BLKmode value will be returned,
  4115.      or 0 if no value or if value is BLKmode.  */
  4116.   rtx valreg;
  4117.   /* Address where we should return a BLKmode value;
  4118.      0 if value not BLKmode.  */
  4119.   rtx structure_value_addr = 0;
  4120.   /* Nonzero if that address is being passed by treating it as
  4121.      an extra, implicit first parameter.  Otherwise,
  4122.      it is passed by being copied directly into struct_value_rtx.  */
  4123.   int structure_value_addr_parm = 0;
  4124.   /* Nonzero if called function returns an aggregate in memory PCC style,
  4125.      by returning the address of where to find it.  */
  4126.   int pcc_struct_value = 0;
  4127.  
  4128.   /* Number of actual parameters in this call, including struct value addr.  */
  4129.   int num_actuals;
  4130.   /* Number of named args.  Args after this are anonymous ones
  4131.      and they must all go on the stack.  */
  4132.   int n_named_args;
  4133.  
  4134.   /* Vector of information about each argument.
  4135.      Arguments are numbered in the order they will be pushed,
  4136.      not the order they are written.  */
  4137.   struct arg_data *args;
  4138.  
  4139.   /* Total size in bytes of all the stack-parms scanned so far.  */
  4140.   struct args_size args_size;
  4141.   /* Remember initial value of args_size.constant.  */
  4142.   int starting_args_size;
  4143.   /* Nonzero means count reg-parms' size in ARGS_SIZE.  */
  4144.   int stack_count_regparms = 0;
  4145.   /* Data on reg parms scanned so far.  */
  4146.   CUMULATIVE_ARGS args_so_far;
  4147.   /* Nonzero if a reg parm has been scanned.  */
  4148.   int reg_parm_seen;
  4149.   /* Nonzero if we must avoid push-insns in the args for this call.  */
  4150.   int must_preallocate;
  4151.   /* 1 if scanning parms front to back, -1 if scanning back to front.  */
  4152.   int inc;
  4153.   /* Address of space preallocated for stack parms
  4154.      (on machines that lack push insns), or 0 if space not preallocated.  */
  4155.   rtx argblock = 0;
  4156.  
  4157.   /* Nonzero if it is plausible that this is a call to alloca.  */
  4158.   int may_be_alloca;
  4159.   /* Nonzero if this is a call to setjmp or a related function.  */
  4160.   int is_setjmp;
  4161.   /* Nonzero if this is a call to an inline function.  */
  4162.   int is_integrable = 0;
  4163.   /* Nonzero if this is a call to __builtin_new.  */
  4164.   int is_builtin_new;
  4165.   /* Nonzero if this is a call to a `const' function.  */
  4166.   int is_const = 0;
  4167.  
  4168.   /* Nonzero if there are BLKmode args whose data types require them
  4169.      to be passed in memory, not (even partially) in registers.  */
  4170.   int BLKmode_parms_forced = 0;
  4171.   /* The offset of the first BLKmode parameter which 
  4172.      *must* be passed in memory.  */
  4173.   int BLKmode_parms_first_offset = 0;
  4174.   /* Total size of BLKmode parms which could usefully be preallocated.  */
  4175.   int BLKmode_parms_sizes = 0;
  4176.  
  4177.   /* Amount stack was adjusted to protect BLKmode parameters
  4178.      which are below the nominal "stack address" value.  */
  4179.   rtx protected_stack = 0;
  4180.  
  4181.   /* The last insn before the things that are intrinsically part of the call.
  4182.      The beginning reg-note goes on the insn after this one.  */
  4183.   rtx insn_before;
  4184.  
  4185.   rtx old_stack_level = 0;
  4186.   int old_pending_adj;
  4187.   int old_inhibit_defer_pop = inhibit_defer_pop;
  4188.   tree old_cleanups = cleanups_of_this_call;
  4189.   rtx use_insns;
  4190.  
  4191.   register tree p;
  4192.   register int i;
  4193.  
  4194.   /* See if we can find a DECL-node for the actual function.
  4195.      As a result, decide whether this is a call to an integrable function.  */
  4196.  
  4197.   p = TREE_OPERAND (exp, 0);
  4198.   if (TREE_CODE (p) == ADDR_EXPR)
  4199.     {
  4200.       fndecl = TREE_OPERAND (p, 0);
  4201.       if (TREE_CODE (fndecl) != FUNCTION_DECL)
  4202.     fndecl = 0;
  4203.       else
  4204.     {
  4205.       extern tree current_function_decl;
  4206.  
  4207.       if (fndecl != current_function_decl
  4208.           && DECL_SAVED_INSNS (fndecl))
  4209.         is_integrable = 1;
  4210.       else
  4211.         {
  4212.           /* In case this function later becomes inlineable,
  4213.          record that there was already a non-inline call to it.  */
  4214.           mark_addressable (fndecl);
  4215.         }
  4216.  
  4217.       if (TREE_READONLY (fndecl) && ! TREE_THIS_VOLATILE (fndecl))
  4218.         is_const = 1;
  4219.     }
  4220.     }
  4221.  
  4222.   /* When calling a const function, we must pop the stack args right away,
  4223.      so that the pop is deleted or moved with the call.  */
  4224.   if (is_const)
  4225.     NO_DEFER_POP;
  4226.  
  4227.   /* Set up a place to return a structure.  */
  4228.  
  4229.   /* Cater to broken compilers.  */
  4230.   if (aggregate_value_p (exp))
  4231.     {
  4232.       /* This call returns a big structure.  */
  4233. #ifdef PCC_STATIC_STRUCT_RETURN
  4234.       if (flag_pcc_struct_return)
  4235.     {
  4236.       pcc_struct_value = 1;
  4237.       is_integrable = 0;  /* Easier than making that case work right.  */
  4238.     }
  4239.       else
  4240. #endif
  4241.     {
  4242.       if (target && GET_CODE (target) == MEM)
  4243.         {
  4244.           structure_value_addr = XEXP (target, 0);
  4245.           if (reg_mentioned_p (stack_pointer_rtx, structure_value_addr))
  4246.         structure_value_addr = copy_to_reg (structure_value_addr);
  4247.         }
  4248.       else
  4249.         {
  4250.           /* Make room on the stack to hold the value.  */
  4251.           structure_value_addr
  4252.         = get_structure_value_addr (expr_size (exp));
  4253.           target = 0;
  4254.         }
  4255.     }
  4256.     }
  4257.  
  4258.   /* If called function is inline, try to integrate it.  */
  4259.  
  4260.   if (is_integrable)
  4261.     {
  4262.       extern rtx expand_inline_function ();
  4263.       rtx temp;
  4264.  
  4265.       temp = expand_inline_function (fndecl, actparms, target,
  4266.                      ignore, TREE_TYPE (exp),
  4267.                      structure_value_addr);
  4268.  
  4269.       /* If inlining succeeded, return.  */
  4270.       if ((int) temp != -1)
  4271.     return temp;
  4272.  
  4273.       /* If inlining failed, mark FNDECL as needing to be compiled
  4274.      separately after all.  */
  4275.       TREE_ADDRESSABLE (fndecl) = 1;
  4276.       TREE_ADDRESSABLE (DECL_NAME (fndecl)) = 1;
  4277.     }
  4278.  
  4279. #if 0
  4280.   /* Unless it's a call to a specific function that isn't alloca,
  4281.      if it has one argument, we must assume it might be alloca.  */
  4282.  
  4283.   may_be_alloca =
  4284.     (!(fndecl != 0
  4285.        && strcmp (IDENTIFIER_POINTER (DECL_NAME (fndecl)),
  4286.           "alloca"))
  4287.      && actparms != 0
  4288.      && TREE_CHAIN (actparms) == 0);
  4289. #else
  4290.   /* We assume that alloca will always be called by name.  It
  4291.      makes no sense to pass it as a pointer-to-function to
  4292.      anything that does not understand its behavior.  */
  4293.   may_be_alloca =
  4294.     (fndecl && (! strcmp (IDENTIFIER_POINTER (DECL_NAME (fndecl)), "alloca")
  4295.         || ! strcmp (IDENTIFIER_POINTER (DECL_NAME (fndecl)),
  4296.                  "__builtin_alloca")));
  4297. #endif
  4298.  
  4299.   /* See if this is a call to a function that can return more than once.  */
  4300.  
  4301.   is_setjmp
  4302.     = (fndecl != 0
  4303.        && (!strcmp (IDENTIFIER_POINTER (DECL_NAME (fndecl)), "setjmp")
  4304.        || !strcmp (IDENTIFIER_POINTER (DECL_NAME (fndecl)), "_setjmp")));
  4305.  
  4306.   is_builtin_new
  4307.     = (fndecl != 0
  4308.        && (!strcmp (IDENTIFIER_POINTER (DECL_NAME (fndecl)), "__builtin_new")));
  4309.  
  4310.   if (may_be_alloca)
  4311.     {
  4312.       frame_pointer_needed = 1;
  4313.       may_call_alloca = 1;
  4314.       current_function_calls_alloca = 1;
  4315.     }
  4316.  
  4317.   /* Don't let pending stack adjusts add up to too much.
  4318.      Also, do all pending adjustments now
  4319.      if there is any chance this might be a call to alloca.  */
  4320.  
  4321.   if (pending_stack_adjust >= 32
  4322.       || (pending_stack_adjust > 0 && may_be_alloca))
  4323.     do_pending_stack_adjust ();
  4324.  
  4325.   /* Operand 0 is a pointer-to-function; get the type of the function.  */
  4326.   funtype = TREE_TYPE (TREE_OPERAND (exp, 0));
  4327.   if (TREE_CODE (funtype) != POINTER_TYPE)
  4328.     abort ();
  4329.   funtype = TREE_TYPE (funtype);
  4330.  
  4331.   /* If struct_value_rtx is 0, it means pass the address
  4332.      as if it were an extra parameter.  */
  4333.   if (structure_value_addr && struct_value_rtx == 0)
  4334.     {
  4335.       rtx tem;
  4336.  
  4337.       INIT_CUMULATIVE_ARGS (args_so_far, funtype);
  4338.       tem = FUNCTION_ARG (args_so_far, Pmode,
  4339.               build_pointer_type (TREE_TYPE (funtype)), 1);
  4340.       if (tem == 0)
  4341.     {
  4342.       actparms = tree_cons (error_mark_node,
  4343.                 build (SAVE_EXPR,
  4344.                        type_for_size (GET_MODE_BITSIZE (Pmode), 0),
  4345.                        0,
  4346.                        force_reg (Pmode, structure_value_addr)),
  4347.                 actparms);
  4348.       structure_value_addr_parm = 1;
  4349.     }
  4350.     }
  4351.  
  4352.   /* Count the arguments and set NUM_ACTUALS.  */
  4353.   for (p = actparms, i = 0; p; p = TREE_CHAIN (p)) i++;
  4354.   num_actuals = i;
  4355.  
  4356.   /* Compute number of named args.
  4357.      Don't include the last named arg if anonymous args follow.
  4358.      (If no anonymous args follow, the result of list_length
  4359.      is actually one too large.)  */
  4360.   if (TYPE_ARG_TYPES (funtype) != 0)
  4361.     n_named_args = list_length (TYPE_ARG_TYPES (funtype)) - 1;
  4362.   else
  4363.     /* If we know nothing, treat all args as named.  */
  4364.     n_named_args = num_actuals;
  4365.  
  4366.   /* Make a vector to hold all the information about each arg.  */
  4367.   args = (struct arg_data *) alloca (num_actuals * sizeof (struct arg_data));
  4368.   bzero (args, num_actuals * sizeof (struct arg_data));
  4369.  
  4370.   args_size.constant = 0;
  4371.   args_size.var = 0;
  4372. #ifdef FIRST_PARM_CALLER_OFFSET
  4373.   args_size.constant = FIRST_PARM_CALLER_OFFSET (funtype);
  4374.   stack_count_regparms = 1;
  4375. #endif
  4376.   starting_args_size = args_size.constant;
  4377.  
  4378.   /* In this loop, we consider args in the order they are written.
  4379.      We fill up ARGS from the front of from the back if necessary
  4380.      so that in any case the first arg to be pushed ends up at the front.  */
  4381.  
  4382. #ifdef PUSH_ARGS_REVERSED
  4383.   i = num_actuals - 1, inc = -1;
  4384.   /* In this case, must reverse order of args
  4385.      so that we compute and push the last arg first.  */
  4386. #else
  4387.   i = 0, inc = 1;
  4388. #endif
  4389.  
  4390.   INIT_CUMULATIVE_ARGS (args_so_far, funtype);
  4391.  
  4392.   for (p = actparms; p; p = TREE_CHAIN (p), i += inc)
  4393.     {
  4394.       tree type = TREE_TYPE (TREE_VALUE (p));
  4395.       args[i].tree_value = TREE_VALUE (p);
  4396.       args[i].offset = args_size;
  4397.  
  4398.       if (type == error_mark_node
  4399.       || TYPE_SIZE (type) == 0)
  4400.     continue;
  4401.  
  4402.       /* Decide where to pass this arg.  */
  4403.       /* args[i].reg is nonzero if all or part is passed in registers.
  4404.      args[i].partial is nonzero if part but not all is passed in registers,
  4405.       and the exact value says how many words are passed in registers.  */
  4406.  
  4407.       if (TREE_CODE (TYPE_SIZE (type)) == INTEGER_CST
  4408.       && args_size.var == 0
  4409.       /* error_mark_node here is a flag for the fake argument
  4410.          for a structure value address.  */
  4411.       && TREE_PURPOSE (p) != error_mark_node)
  4412.     {
  4413. #if defined( DSP56000 ) || defined( DSP96000 )
  4414.       args[i].reg = FUNCTION_ARG (args_so_far, TYPE_MODE (type), type,
  4415.                       i >= ( num_actuals - n_named_args));
  4416. #else
  4417.       args[i].reg = FUNCTION_ARG (args_so_far, TYPE_MODE (type), type,
  4418.                       i < n_named_args);
  4419. #endif
  4420.  
  4421.       /* If this argument needs more than the usual parm alignment, do
  4422.          extrinsic padding to reach that alignment.  */
  4423.  
  4424. #ifdef MAX_PARM_BOUNDARY
  4425.       /* If MAX_PARM_BOUNDARY is not defined, it means that the usual
  4426.          alignment requirements are relaxed for parms, and that no parm
  4427.          needs more than PARM_BOUNDARY, regardless of data type.  */
  4428.  
  4429.       if (PARM_BOUNDARY < TYPE_ALIGN (type))
  4430.         {
  4431.           int boundary = PARM_BOUNDARY;
  4432.  
  4433.           /* Determine the boundary to pad up to.  */
  4434.           if (TYPE_ALIGN (type) > boundary)
  4435.         boundary = TYPE_ALIGN (type);
  4436.           if (boundary > MAX_PARM_BOUNDARY)
  4437.         boundary = MAX_PARM_BOUNDARY;
  4438.  
  4439.           /* If the previous args don't reach such a boundary,
  4440.          advance to the next one.  */
  4441.           boundary /= BITS_PER_UNIT;
  4442.           args[i].offset.constant += boundary - 1;
  4443.           args[i].offset.constant &= ~(boundary - 1);
  4444.           args_size.constant += boundary - 1;
  4445.           args_size.constant &= ~(boundary - 1);
  4446.  
  4447.           if (args_size.var != 0)
  4448.         abort ();        /* This case not implemented yet */
  4449.         }
  4450. #endif /* MAX_PARM_BOUNDARY */
  4451.  
  4452. #ifdef FUNCTION_ARG_PARTIAL_NREGS
  4453.       args[i].partial
  4454.         = FUNCTION_ARG_PARTIAL_NREGS (args_so_far,
  4455.                       TYPE_MODE (type), type,
  4456.                       i < n_named_args);
  4457. #endif
  4458.     }
  4459.  
  4460.       /* Compute the stack-size of this argument.  */
  4461.  
  4462.       if (args[i].reg != 0 && args[i].partial == 0
  4463.       && ! stack_count_regparms)
  4464.     /* On most machines, don't count stack space for a register arg.  */
  4465.     ;
  4466.       else if (TYPE_MODE (type) != BLKmode)
  4467.     {
  4468.       register int size;
  4469.  
  4470. #if defined( DSP56000 )
  4471.       /* we have to kludge this: the compiler must know that DI is not
  4472.          equivalent to SI, but that both require a single memory location.
  4473.          */
  4474.       if ((( DFmode == TYPE_MODE ( type ) ) ||
  4475.            ( SFmode == TYPE_MODE ( type ) ) ||
  4476.            ( DImode == TYPE_MODE ( type ) )) && ( 'l' == memory_model ))
  4477.       {
  4478.           size = 1;
  4479.       }
  4480.       else
  4481.       {
  4482.           size = GET_MODE_SIZE ( TYPE_MODE ( type ));
  4483.       }
  4484.       
  4485. #else
  4486.       size = GET_MODE_SIZE (TYPE_MODE (type));
  4487. #endif
  4488.       /* Compute how much space the push instruction will push.
  4489.          On many machines, pushing a byte will advance the stack
  4490.          pointer by a halfword.  */
  4491. #ifdef PUSH_ROUNDING
  4492.       size = PUSH_ROUNDING (size);
  4493. #endif
  4494.       /* Compute how much space the argument should get:
  4495.          maybe pad to a multiple of the alignment for arguments.  */
  4496.       if (none == FUNCTION_ARG_PADDING (TYPE_MODE (type), const0_rtx))
  4497.         args[i].size.constant = size;
  4498.       else
  4499.         args[i].size.constant
  4500.           = (((size + PARM_BOUNDARY / BITS_PER_UNIT - 1)
  4501.           / (PARM_BOUNDARY / BITS_PER_UNIT))
  4502.          * (PARM_BOUNDARY / BITS_PER_UNIT));
  4503.     }
  4504.       else
  4505.     {
  4506.       register tree size = size_in_bytes (type);
  4507.  
  4508.       /* A nonscalar.  Round its size up to a multiple
  4509.          of PARM_BOUNDARY bits, unless it is not supposed to be padded.  */
  4510.       if (none
  4511.           != FUNCTION_ARG_PADDING (TYPE_MODE (type),
  4512.                        expand_expr (size, 0, VOIDmode, 0)))
  4513.         size = convert_units (convert_units (size, BITS_PER_UNIT,
  4514.                          PARM_BOUNDARY),
  4515.                   PARM_BOUNDARY, BITS_PER_UNIT);
  4516.       ADD_PARM_SIZE (args[i].size, size);
  4517.  
  4518.       /* Certain data types may not be passed in registers
  4519.          (eg C++ classes with constructors).
  4520.          Also, BLKmode parameters initialized from CALL_EXPRs
  4521.          are treated specially, if it is a win to do so.  */
  4522.       if (TREE_CODE (TREE_VALUE (p)) == CALL_EXPR
  4523.           || TREE_ADDRESSABLE (type))
  4524.         {
  4525.           if (TREE_ADDRESSABLE (type))
  4526.         BLKmode_parms_forced = 1;
  4527.           /* This is a marker for such a parameter.  */
  4528.           args[i].stack = const0_rtx;
  4529.           BLKmode_parms_sizes += TREE_INT_CST_LOW (size);
  4530.  
  4531.           /* If this parm's location is "below" the nominal stack pointer,
  4532.          note to decrement the stack pointer while it is computed.  */
  4533. #ifdef FIRST_PARM_CALLER_OFFSET
  4534.           if (BLKmode_parms_first_offset == 0)
  4535.         BLKmode_parms_first_offset
  4536.           /* If parameter's offset is variable, assume the worst.  */
  4537.           = (args[i].offset.var
  4538.              ? FIRST_PARM_CALLER_OFFSET (funtype)
  4539.              : args[i].offset.constant);
  4540. #endif
  4541.         }
  4542.     }
  4543.  
  4544.       /* If a part of the arg was put into registers,
  4545.      don't include that part in the amount pushed.  */
  4546.       if (! stack_count_regparms)
  4547.     args[i].size.constant
  4548.       -= ((args[i].partial * UNITS_PER_WORD)
  4549.           / (PARM_BOUNDARY / BITS_PER_UNIT)
  4550.           * (PARM_BOUNDARY / BITS_PER_UNIT));
  4551.  
  4552.       /* Update ARGS_SIZE, the total stack space for args so far.  */
  4553.  
  4554.       args_size.constant += args[i].size.constant;
  4555.       if (args[i].size.var)
  4556.     {
  4557.       ADD_PARM_SIZE (args_size, args[i].size.var);
  4558.     }
  4559.  
  4560.       /* Increment ARGS_SO_FAR, which has info about which arg-registers
  4561.      have been used, etc.  */
  4562.  
  4563.       FUNCTION_ARG_ADVANCE (args_so_far, TYPE_MODE (type), type,
  4564.                 i < n_named_args);
  4565.     }
  4566.  
  4567.   /* If we would have to push a partially-in-regs parm
  4568.      before other stack parms, preallocate stack space instead.  */
  4569.   must_preallocate = 0;
  4570.   {
  4571.     int partial_seen = 0;
  4572.     for (i = 0; i < num_actuals; i++)
  4573.       {
  4574.     if (args[i].partial > 0)
  4575.       partial_seen = 1;
  4576.     else if (partial_seen && args[i].reg == 0)
  4577.       must_preallocate = 1;
  4578.       }
  4579.   }
  4580.  
  4581.   /* Precompute all register parameters.  It isn't safe to compute anything
  4582.      once we have started filling any specific hard regs.
  4583.      If this function call is cse'able, precompute all the parameters.  */
  4584.  
  4585.   reg_parm_seen = 0;
  4586.   for (i = 0; i < num_actuals; i++)
  4587.     if (args[i].reg != 0 || is_const)
  4588.       {
  4589.     int j;
  4590.     int struct_value_lossage = 0;
  4591.  
  4592.     /* First, see if this is a precomputed struct-returning function call
  4593.        and other subsequent parms are also such.  */
  4594.     if ((TYPE_MODE (TREE_TYPE (args[i].tree_value)) == BLKmode
  4595.          || RETURN_IN_MEMORY (TREE_TYPE (args[i].tree_value)))
  4596.         && TREE_CODE (args[i].tree_value) == CALL_EXPR)
  4597.       for (j = i + 1; j < num_actuals; j++)
  4598.         if ((TYPE_MODE (TREE_TYPE (args[j].tree_value)) == BLKmode
  4599.          || RETURN_IN_MEMORY (TREE_TYPE (args[j].tree_value)))
  4600.         && TREE_CODE (args[j].tree_value) == CALL_EXPR
  4601.         && args[j].reg != 0 || is_const)
  4602.           {
  4603.         /* We have two precomputed structure-values call expressions
  4604.            in our parm list.  Both of them would normally use
  4605.            the structure-value block.  To avoid the conflict,
  4606.            compute this parm with a different temporary block.  */
  4607.         int size = int_size_in_bytes (TREE_TYPE (args[i].tree_value));
  4608.         rtx structval = assign_stack_local (BLKmode, size);
  4609.         args[i].value = expand_expr (args[i].tree_value, structval,
  4610.                          VOIDmode, 0);
  4611.         struct_value_lossage = 1;
  4612.         break;
  4613.           }
  4614.     if (!struct_value_lossage)
  4615.       args[i].value = expand_expr (args[i].tree_value, 0, VOIDmode, 0);
  4616.  
  4617.     if (args[i].reg != 0)
  4618.       reg_parm_seen = 1;
  4619.  
  4620.     if (GET_CODE (args[i].value) != MEM
  4621.         && ! CONSTANT_P (args[i].value)
  4622.         && GET_CODE (args[i].value) != CONST_DOUBLE)
  4623.       args[i].value
  4624.         = force_reg (TYPE_MODE (TREE_TYPE (args[i].tree_value)),
  4625.              args[i].value);
  4626.     /* ANSI doesn't require a sequence point here,
  4627.        but PCC has one, so this will avoid some problems.  */
  4628.     emit_queue ();
  4629.       }
  4630.  
  4631.   /* Get the function to call, in the form of RTL, if it is a constant.  */
  4632.   if (fndecl && is_const)
  4633.     {
  4634.       /* Get a SYMBOL_REF rtx for the function address.  */
  4635.       funexp = XEXP (DECL_RTL (fndecl), 0);
  4636.  
  4637. #ifndef NO_FUNCTION_CSE
  4638.       /* Pass the address through a pseudoreg, if desired,
  4639.      before the "beginning" of the library call.
  4640.      So this insn isn't "part of" the library call, in case that
  4641.      is deleted, or cse'd.  */
  4642.       if (! flag_no_function_cse)
  4643.     funexp = copy_to_mode_reg (Pmode, funexp);
  4644. #endif
  4645.     }
  4646.  
  4647.   /* Now we are about to start emitting insns that can be deleted
  4648.      if the libcall is deleted.  */
  4649.   insn_before = get_last_insn ();
  4650.  
  4651.   /* Maybe do additional rounding on the size of the arguments.  */
  4652. #ifdef STACK_ARGS_ADJUST
  4653.   STACK_ARGS_ADJUST (args_size);
  4654. #endif
  4655.  
  4656.   /* If we have no actual push instructions, or shouldn't use them,
  4657.      or we need a variable amount of space, make space for all args right now.
  4658.      Round the needed size up to multiple of STACK_BOUNDARY.  */
  4659.  
  4660.   if (args_size.var != 0)
  4661.     {
  4662.       old_stack_level = copy_to_mode_reg (Pmode, stack_pointer_rtx);
  4663.       old_pending_adj = pending_stack_adjust;
  4664.       argblock = push_block (round_push (ARGS_SIZE_RTX (args_size)));
  4665.     }
  4666.   else if (args_size.constant > 0)
  4667.     {
  4668.       int needed = args_size.constant;
  4669.  
  4670. #ifdef STACK_BOUNDARY
  4671.       needed = (needed + STACK_BYTES - 1) / STACK_BYTES * STACK_BYTES;
  4672. #endif
  4673.       args_size.constant = needed;
  4674.  
  4675.       if (
  4676. #ifndef PUSH_ROUNDING
  4677.       1  /* Always preallocate if no push insns.  */
  4678. #else
  4679.       must_preallocate || BLKmode_parms_forced
  4680.       || BLKmode_parms_sizes > (args_size.constant >> 1)
  4681. #endif
  4682.       )
  4683.     {
  4684.       /* Try to reuse some or all of the pending_stack_adjust
  4685.          to get this space.  Maybe we can avoid any pushing.  */
  4686.       if (needed > pending_stack_adjust)
  4687.         {
  4688.           needed -= pending_stack_adjust;
  4689.           pending_stack_adjust = 0;
  4690.         }
  4691.       else
  4692.         {
  4693.           pending_stack_adjust -= needed;
  4694.           needed = 0;
  4695.         }
  4696.       argblock = push_block (gen_rtx (CONST_INT, VOIDmode, needed));
  4697.     }
  4698.     }
  4699. #ifndef PUSH_ROUNDING
  4700.   else if (BLKmode_parms_forced)
  4701.     {
  4702.       /* If we have reg-parms that need to be temporarily on the stack,
  4703.      set up an arg block address even though there is no space
  4704.      to be allocated for it.  */
  4705.       argblock = push_block (const0_rtx);
  4706.     }
  4707. #endif
  4708.  
  4709. #if 0
  4710.   /* If stack needs padding below the args, increase all arg offsets
  4711.      so the args are stored above the padding.  */
  4712.   if (stack_padding)
  4713.     for (i = 0; i < num_actuals; i++)
  4714.       args[i].offset.constant += stack_padding;
  4715. #endif
  4716.  
  4717.   /* Don't try to defer pops if preallocating, not even from the first arg,
  4718.      since ARGBLOCK probably refers to the SP.  */
  4719.   if (argblock)
  4720.     NO_DEFER_POP;
  4721.  
  4722. #ifdef STACK_GROWS_DOWNWARD
  4723.   /* If any BLKmode parms need to be preallocated in space
  4724.      below the nominal stack-pointer address, we need to adjust the
  4725.      stack pointer so that this location is temporarily above it.
  4726.      This ensures that computation won't clobber that space.  */
  4727.   if (BLKmode_parms_first_offset < 0 && argblock != 0)
  4728.     {
  4729.       int needed = -BLKmode_parms_first_offset;
  4730.       argblock = copy_to_reg (argblock);
  4731.  
  4732. #ifdef STACK_BOUNDARY
  4733.       needed = (needed + STACK_BYTES - 1) / STACK_BYTES * STACK_BYTES;
  4734. #endif
  4735.       protected_stack = gen_rtx (CONST_INT, VOIDmode, needed);
  4736.       anti_adjust_stack (protected_stack);
  4737.     }
  4738. #endif /* STACK_GROWS_DOWNWARD */
  4739.  
  4740.   /* Get the function to call, in the form of RTL.  */
  4741.   if (fndecl)
  4742.     /* Get a SYMBOL_REF rtx for the function address.  */
  4743.     funexp = XEXP (DECL_RTL (fndecl), 0);
  4744.   else
  4745.     /* Generate an rtx (probably a pseudo-register) for the address.  */
  4746.     {
  4747.       funexp = expand_expr (TREE_OPERAND (exp, 0), 0, VOIDmode, 0);
  4748.       emit_queue ();
  4749.     }
  4750.  
  4751.   /* Now compute and store all non-register parms.
  4752.      These come before register parms, since they can require block-moves,
  4753.      which could clobber the registers used for register parms.
  4754.      Parms which have partial registers are not stored here,
  4755.      but we do preallocate space here if they want that.  */
  4756.  
  4757.   for (i = 0; i < num_actuals; i++)
  4758.     {
  4759.       /* Preallocate the stack space for a parm if appropriate
  4760.      so it can be computed directly in the stack space.  */
  4761.       if (args[i].stack != 0 && argblock != 0)
  4762.     args[i].stack = target_for_arg (TREE_TYPE (args[i].tree_value),
  4763.                     ARGS_SIZE_RTX (args[i].size),
  4764.                     argblock, args[i].offset);
  4765.       else
  4766.     args[i].stack = 0;
  4767.  
  4768.       if (args[i].reg == 0
  4769.       && TYPE_SIZE (TREE_TYPE (args[i].tree_value)) != 0)
  4770.     store_one_arg (&args[i], argblock, may_be_alloca);
  4771.     }
  4772.  
  4773.   /* Now store any partially-in-registers parm.
  4774.      This is the last place a block-move can happen.  */
  4775.   if (reg_parm_seen)
  4776.     for (i = 0; i < num_actuals; i++)
  4777.       if (args[i].partial != 0)
  4778.     store_one_arg (&args[i], argblock, may_be_alloca);
  4779.  
  4780.   if (protected_stack != 0)
  4781.     adjust_stack (protected_stack);
  4782.  
  4783.   /* Pass the function the address in which to return a structure value.  */
  4784.   if (structure_value_addr && ! structure_value_addr_parm)
  4785.     emit_move_insn (struct_value_rtx,
  4786.             force_reg (Pmode, force_operand (structure_value_addr, 0)));
  4787.  
  4788.   /* Now set up any wholly-register parms.  They were computed already.  */
  4789.   if (reg_parm_seen)
  4790.     for (i = 0; i < num_actuals; i++)
  4791.       if (args[i].reg != 0 && args[i].partial == 0)
  4792.     store_one_arg (&args[i], argblock, may_be_alloca);
  4793.  
  4794.   /* Perform postincrements before actually calling the function.  */
  4795.   emit_queue ();
  4796.  
  4797.   /* All arguments and registers used for the call must be set up by now!  */
  4798.  
  4799.   /* ??? Other languages need a nontrivial second argument (static chain).  */
  4800.   funexp = prepare_call_address (funexp, 0);
  4801.  
  4802.   /* Mark all register-parms as living through the call.  */
  4803.   start_sequence ();
  4804.   for (i = 0; i < num_actuals; i++)
  4805.     if (args[i].reg != 0)
  4806.       {
  4807.     if (args[i].partial > 0)
  4808.       use_regs (REGNO (args[i].reg), args[i].partial);
  4809.     else if (GET_MODE (args[i].reg) == BLKmode)
  4810.       use_regs (REGNO (args[i].reg),
  4811.             ((int_size_in_bytes (TREE_TYPE (args[i].tree_value))
  4812.               + UNITS_PER_WORD - 1)
  4813.              / UNITS_PER_WORD));
  4814.     else
  4815.       emit_insn (gen_rtx (USE, VOIDmode, args[i].reg));
  4816.       }
  4817.  
  4818.   if (structure_value_addr && ! structure_value_addr_parm
  4819.       && GET_CODE (struct_value_rtx) == REG)
  4820.     emit_insn (gen_rtx (USE, VOIDmode, struct_value_rtx));
  4821.  
  4822.   use_insns = gen_sequence ();
  4823.   end_sequence ();
  4824.  
  4825.   /* Figure out the register where the value, if any, will come back.  */
  4826.   valreg = 0;
  4827.   if (TYPE_MODE (TREE_TYPE (exp)) != VOIDmode
  4828.       && ! structure_value_addr)
  4829.     {
  4830.       if (pcc_struct_value)
  4831.     valreg = hard_libcall_value (Pmode);
  4832.       else
  4833.     valreg = hard_function_value (TREE_TYPE (exp), fndecl);
  4834.     }
  4835.  
  4836.   /* Generate the actual call instruction.  */
  4837.   /* This also has the effect of turning off any pop-inhibition
  4838.      done in expand_call.  */
  4839.   if (args_size.constant < 0)
  4840.     args_size.constant = 0;
  4841.   emit_call_1 (funexp, funtype, args_size.constant,
  4842.            FUNCTION_ARG (args_so_far, VOIDmode, void_type_node, 1),
  4843.            valreg, old_inhibit_defer_pop, use_insns);
  4844.  
  4845. /* ???  Nothing has been done here to record control flow
  4846.    when contained functions can do nonlocal gotos.  */
  4847.  
  4848.   /* For calls to `setjmp', etc., inform flow.c it should complain
  4849.      if nonvolatile values are live.  */
  4850.  
  4851.   if (is_setjmp)
  4852.     {
  4853.       emit_note (IDENTIFIER_POINTER (DECL_NAME (fndecl)), NOTE_INSN_SETJMP);
  4854.       current_function_calls_setjmp = 1;
  4855.     }
  4856.  
  4857.   /* Notice functions that cannot return.
  4858.      If optimizing, insns emitted below will be dead.
  4859.      If not optimizing, they will exist, which is useful
  4860.      if the user uses the `return' command in the debugger.  */
  4861.  
  4862.   if (fndecl && TREE_THIS_VOLATILE (fndecl))
  4863.     emit_barrier ();
  4864.  
  4865.   /* For calls to __builtin_new, note that it can never return 0.
  4866.      This is because a new handler will be called, and 0 it not
  4867.      among the numbers it is supposed to return.  */
  4868. #if 0
  4869.   if (is_builtin_new)
  4870.     emit_note (IDENTIFIER_POINTER (DECL_NAME (fndecl)), NOTE_INSN_BUILTIN_NEW);
  4871. #endif
  4872.  
  4873.   /* If value type not void, return an rtx for the value.  */
  4874.  
  4875.   /* If there are cleanups to be called, don't use a hard reg as target.  */
  4876.   if (cleanups_of_this_call != old_cleanups
  4877.       && target && REG_P (target)
  4878.       && REGNO (target) < FIRST_PSEUDO_REGISTER)
  4879.     target = 0;
  4880.  
  4881.   if (TYPE_MODE (TREE_TYPE (exp)) == VOIDmode
  4882.       || ignore)
  4883.     {
  4884.       target = const0_rtx;
  4885.     }
  4886.   else if (structure_value_addr)
  4887.     {
  4888.       if (target == 0 || GET_CODE (target) != MEM)
  4889.     target = gen_rtx (MEM, TYPE_MODE (TREE_TYPE (exp)),
  4890.               memory_address (BLKmode, structure_value_addr));
  4891.     }
  4892.   else if (pcc_struct_value)
  4893.     {
  4894.       valreg = hard_function_value (build_pointer_type (TREE_TYPE (exp)),
  4895.                     fndecl);
  4896.       if (target == 0)
  4897.     target = gen_rtx (MEM, TYPE_MODE (TREE_TYPE (exp)),
  4898.               copy_to_reg (valreg));
  4899.       else if (TYPE_MODE (TREE_TYPE (exp)) != BLKmode)
  4900.     emit_move_insn (target, gen_rtx (MEM, TYPE_MODE (TREE_TYPE (exp)),
  4901.                      copy_to_reg (valreg)));
  4902.       else
  4903.     emit_block_move (target, gen_rtx (MEM, BLKmode, copy_to_reg (valreg)),
  4904.              expr_size (exp),
  4905.              TYPE_ALIGN (TREE_TYPE (exp)) / BITS_PER_UNIT);
  4906.     }
  4907.   else if (target && GET_MODE (target) == TYPE_MODE (TREE_TYPE (exp)))
  4908.     {
  4909.       if (!rtx_equal_p (target, valreg))
  4910.     emit_move_insn (target, valreg);
  4911.       else
  4912.     /* This tells expand_inline_function to copy valreg to its target.  */
  4913.     emit_insn (gen_rtx (USE, VOIDmode, valreg));
  4914.     }
  4915.   else
  4916.     target = copy_to_reg (valreg);
  4917.  
  4918.   /* Perform all cleanups needed for the arguments of this call
  4919.      (i.e. destructors in C++).  */
  4920.   while (cleanups_of_this_call != old_cleanups)
  4921.     {
  4922.       expand_expr (TREE_VALUE (cleanups_of_this_call), 0, VOIDmode, 0);
  4923.       cleanups_of_this_call = TREE_CHAIN (cleanups_of_this_call);
  4924.     }
  4925.  
  4926.   /* If size of args is variable, restore saved stack-pointer value.  */
  4927.  
  4928.   if (old_stack_level)
  4929.     {
  4930.       emit_move_insn (stack_pointer_rtx, old_stack_level);
  4931.       pending_stack_adjust = old_pending_adj;
  4932.     }
  4933.  
  4934.   /* If call is cse'able, make appropriate pair of reg-notes around it.  */
  4935.   if (is_const)
  4936.     {
  4937.       rtx insn_first = NEXT_INSN (insn_before);
  4938.       rtx insn_last = get_last_insn ();
  4939.       rtx note = 0;
  4940.  
  4941.       /* Don't put the notes on if we don't have insns that can hold them.  */
  4942.       if ((GET_CODE (insn_first) == INSN
  4943.        || GET_CODE (insn_first) == CALL_INSN
  4944.        || GET_CODE (insn_first) == JUMP_INSN)
  4945.       && (GET_CODE (insn_last) == INSN
  4946.           || GET_CODE (insn_last) == CALL_INSN
  4947.           || GET_CODE (insn_last) == JUMP_INSN))
  4948.     {
  4949.       /* Construct an "equal form" for the value
  4950.          which mentions all the arguments in order
  4951.          as well as the function name.  */
  4952.       for (i = 0; i < num_actuals; i++)
  4953.         if (args[i].reg != 0 || is_const)
  4954.           note = gen_rtx (EXPR_LIST, VOIDmode, args[i].value, note);
  4955.       note = gen_rtx (EXPR_LIST, VOIDmode,
  4956.               XEXP (DECL_RTL (fndecl), 0), note);
  4957.  
  4958.       REG_NOTES (insn_last)
  4959.         = gen_rtx (EXPR_LIST, REG_EQUAL, note,
  4960.                gen_rtx (INSN_LIST, REG_RETVAL, insn_first,
  4961.                 REG_NOTES (insn_last)));
  4962.       REG_NOTES (insn_first)
  4963.         = gen_rtx (INSN_LIST, REG_LIBCALL, insn_last,
  4964.                REG_NOTES (insn_first));
  4965.     }
  4966.     }
  4967.  
  4968. #if defined( DSP56000 ) || defined( DSP96000 )
  4969.   current_func_info |= FUNC_ISNT_LEAF;
  4970. #endif
  4971.   return target;
  4972. }
  4973.  
  4974. /* Return an rtx which represents a suitable home on the stack
  4975.    given TYPE, the type of the argument looking for a home.
  4976.    This is called only for BLKmode arguments.
  4977.  
  4978.    SIZE is the size needed for this target.
  4979.    ARGS_ADDR is the address of the bottom of the argument block for this call.
  4980.    OFFSET describes this parameter's offset into ARGS_ADDR.  It is meaningless
  4981.    if this machine uses push insns.  */
  4982.  
  4983. static rtx
  4984. target_for_arg (type, size, args_addr, offset)
  4985.      tree type;
  4986.      rtx size;
  4987.      rtx args_addr;
  4988.      struct args_size offset;
  4989. {
  4990.   rtx target;
  4991.   rtx offset_rtx = ARGS_SIZE_RTX (offset);
  4992.  
  4993.   /* We do not call memory_address if possible,
  4994.      because we want to address as close to the stack
  4995.      as possible.  For non-variable sized arguments,
  4996.      this will be stack-pointer relative addressing.  */
  4997.   if (GET_CODE (offset_rtx) == CONST_INT)
  4998.     target = plus_constant (args_addr, INTVAL (offset_rtx));
  4999.   else
  5000.     {
  5001.       /* I have no idea how to guarantee that this
  5002.      will work in the presence of register parameters.  */
  5003.       target = gen_rtx (PLUS, Pmode, args_addr, offset_rtx);
  5004.       target = memory_address (QImode, target);
  5005.     }
  5006.  
  5007.   return gen_rtx (MEM, BLKmode, target);
  5008. }
  5009.  
  5010. /* Store a single argument for a function call
  5011.    into the register or memory area where it must be passed.
  5012.    *ARG describes the argument value and where to pass it.
  5013.    ARGBLOCK is the address of the stack-block for all the arguments,
  5014.    or 0 on a machine where arguemnts are pushed individually.
  5015.    MAY_BE_ALLOCA nonzero says this could be a call to `alloca'
  5016.    so must be careful about how the stack is used.  */
  5017.  
  5018. static void
  5019. store_one_arg (arg, argblock, may_be_alloca)
  5020.      struct arg_data *arg;
  5021.      rtx argblock;
  5022.      int may_be_alloca;
  5023. {
  5024.   register tree pval = arg->tree_value;
  5025.   int used = 0;
  5026.  
  5027.   if (TREE_CODE (pval) == ERROR_MARK)
  5028.     return;
  5029.  
  5030.   if (arg->reg != 0 && arg->partial == 0)
  5031.     {
  5032.       /* Being passed entirely in a register.  */
  5033.       if (arg->value != 0)
  5034.     {
  5035.       if (GET_MODE (arg->value) == BLKmode)
  5036.         move_block_to_reg (REGNO (arg->reg), arg->value,
  5037.                    ((int_size_in_bytes (TREE_TYPE (pval))
  5038.                  + UNITS_PER_WORD - 1)
  5039.                 / UNITS_PER_WORD));
  5040.       else
  5041.         emit_move_insn (arg->reg, arg->value);
  5042.     }
  5043.       else
  5044.     store_expr (pval, arg->reg, 0);
  5045.  
  5046.       /* Don't allow anything left on stack from computation
  5047.      of argument to alloca.  */
  5048.       if (may_be_alloca)
  5049.     do_pending_stack_adjust ();
  5050.     }
  5051.   else if (TYPE_MODE (TREE_TYPE (pval)) != BLKmode)
  5052.     {
  5053.       register int size;
  5054.       rtx tem;
  5055.  
  5056.       /* Argument is a scalar, not entirely passed in registers.
  5057.      (If part is passed in registers, arg->partial says how much
  5058.      and emit_push_insn will take care of putting it there.)
  5059.      
  5060.      Push it, and if its size is less than the
  5061.      amount of space allocated to it,
  5062.      also bump stack pointer by the additional space.
  5063.      Note that in C the default argument promotions
  5064.      will prevent such mismatches.  */
  5065.  
  5066. #if defined( DSP56000 )
  5067.       /* we have to kludge this: the compiler must know that DI is not
  5068.          equivalent to SI, but that both require a single memory location.
  5069.          */
  5070.       if (( DImode == TYPE_MODE ( TREE_TYPE ( pval ))) && 
  5071.           ( 'l' == memory_model ))
  5072.       {
  5073.           used = size = 1;
  5074.       }
  5075.       else
  5076.       {
  5077.           used = size = GET_MODE_SIZE ( TYPE_MODE ( TREE_TYPE ( pval )));
  5078.       }
  5079. #else
  5080.       used = size = GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (pval)));
  5081. #endif
  5082.       /* Compute how much space the push instruction will push.
  5083.      On many machines, pushing a byte will advance the stack
  5084.      pointer by a halfword.  */
  5085. #ifdef PUSH_ROUNDING
  5086.       size = PUSH_ROUNDING (size);
  5087. #endif
  5088.       /* Compute how much space the argument should get:
  5089.      round up to a multiple of the alignment for arguments.  */
  5090.       if (none != FUNCTION_ARG_PADDING (TYPE_MODE (TREE_TYPE (pval)), const0_rtx))
  5091.     used = (((size + PARM_BOUNDARY / BITS_PER_UNIT - 1)
  5092.          / (PARM_BOUNDARY / BITS_PER_UNIT))
  5093.         * (PARM_BOUNDARY / BITS_PER_UNIT));
  5094.  
  5095.       tem = arg->value;
  5096.       if (tem == 0)
  5097.     {
  5098.       tem = expand_expr (pval, 0, VOIDmode, 0);
  5099.       /* ANSI doesn't require a sequence point here,
  5100.          but PCC has one, so this will avoid some problems.  */
  5101.       emit_queue ();
  5102.     }
  5103.  
  5104.       /* Don't allow anything left on stack from computation
  5105.      of argument to alloca.  */
  5106.       if (may_be_alloca)
  5107.     do_pending_stack_adjust ();
  5108.  
  5109.       emit_push_insn (tem, TYPE_MODE (TREE_TYPE (pval)), 0, 0,
  5110.               arg->partial, arg->reg, used - size,
  5111.               argblock, ARGS_SIZE_RTX (arg->offset));
  5112.     }
  5113.   else if (arg->stack != 0)
  5114.     {
  5115.       /* BLKmode parm, not entirely passed in registers,
  5116.      and with space already allocated.  */
  5117.  
  5118.       tree sizetree = size_in_bytes (TREE_TYPE (pval));
  5119.       /* Round the size up to multiple of PARM_BOUNDARY bits.  */
  5120.       tree s1 = convert_units (sizetree, BITS_PER_UNIT, PARM_BOUNDARY);
  5121.       tree s2 = convert_units (s1, PARM_BOUNDARY, BITS_PER_UNIT);
  5122.  
  5123.       /* Find out if the parm needs padding, and whether above or below.  */
  5124.       enum direction where_pad
  5125.     = FUNCTION_ARG_PADDING (TYPE_MODE (TREE_TYPE (pval)),
  5126.                 expand_expr (sizetree, 0, VOIDmode, 0));
  5127.  
  5128.       /* If it is padded below, adjust the stack address
  5129.      upward over the padding.  */
  5130.  
  5131.       if (where_pad == downward)
  5132.     {
  5133.       rtx offset_rtx;
  5134.       rtx address = XEXP (arg->stack, 0);
  5135.       struct args_size stack_offset;
  5136.  
  5137.       stack_offset.constant = 0;
  5138.       stack_offset.var = 0;
  5139.  
  5140.       /* Compute amount of padding.  */
  5141.       ADD_PARM_SIZE (stack_offset, s2);
  5142.       SUB_PARM_SIZE (stack_offset, sizetree);
  5143.       offset_rtx = ARGS_SIZE_RTX (stack_offset);
  5144.  
  5145.       /* Adjust the address to store at.  */
  5146.       if (GET_CODE (offset_rtx) == CONST_INT)
  5147.         address = plus_constant (address, INTVAL (offset_rtx));
  5148.       else
  5149.         {
  5150.           address = gen_rtx (PLUS, Pmode, address, offset_rtx);
  5151.           address = memory_address (QImode, address);
  5152.         }
  5153.       arg->stack = change_address (arg->stack, VOIDmode, address);
  5154.     }
  5155.  
  5156.       /* ARG->stack probably refers to the stack-pointer.  If so,
  5157.      stabilize it, in case stack-pointer changes during evaluation.  */
  5158.       if (reg_mentioned_p (stack_pointer_rtx, arg->stack))
  5159.     arg->stack = change_address (arg->stack, VOIDmode,
  5160.                      copy_to_reg (XEXP (arg->stack, 0)));
  5161.       /* BLKmode argument that should go in a prespecified stack location.  */
  5162.       if (arg->value == 0)
  5163.     /* Not yet computed => compute it there.  */
  5164.     /* ??? This should be changed to tell expand_expr
  5165.        that it can store directly in the target.  */
  5166.     arg->value = store_expr (arg->tree_value, arg->stack, 0);
  5167.       else if (arg->value != arg->stack)
  5168.     /* It was computed somewhere, but not where we wanted.
  5169.        For example, the value may have come from an official
  5170.        local variable or parameter.  In that case, expand_expr
  5171.        does not fill our suggested target.  */
  5172.     emit_block_move (arg->stack, arg->value, ARGS_SIZE_RTX (arg->size),
  5173.              TYPE_ALIGN (TREE_TYPE (pval)) / BITS_PER_UNIT);
  5174.  
  5175.       /* Now, if this value wanted to be partly in registers,
  5176.      move the value from the stack to the registers
  5177.      that are supposed to hold the values.  */
  5178.       if (arg->partial > 0)
  5179.     move_block_to_reg (REGNO (arg->reg), arg->stack, arg->partial);
  5180.     }
  5181.   else
  5182.     {
  5183.       /* BLKmode, at least partly to be pushed.  */
  5184.  
  5185.       register rtx tem
  5186.     = arg->value ? arg->value : expand_expr (pval, 0, VOIDmode, 0);
  5187.       register int excess;
  5188.       rtx size_rtx;
  5189.  
  5190.       /* Pushing a nonscalar.
  5191.      If part is passed in registers, arg->partial says how much
  5192.      and emit_push_insn will take care of putting it there.  */
  5193.  
  5194.       /* Round its size up to a multiple
  5195.      of the allocation unit for arguments.  */
  5196.  
  5197.       if (arg->size.var != 0)
  5198.     {
  5199.       excess = 0;
  5200.       size_rtx = ARGS_SIZE_RTX (arg->size);
  5201.     }
  5202.       else
  5203.     {
  5204.       register tree size = size_in_bytes (TREE_TYPE (pval));
  5205.       /* PUSH_ROUNDING has no effect on us, because
  5206.          emit_push_insn for BLKmode is careful to avoid it.  */
  5207.       excess = (arg->size.constant - TREE_INT_CST_LOW (size)
  5208.             + arg->partial * UNITS_PER_WORD);
  5209.       size_rtx = expand_expr (size, 0, VOIDmode, 0);
  5210.     }
  5211.  
  5212.       if (arg->stack)
  5213.     abort ();
  5214.  
  5215.       emit_push_insn (tem, TYPE_MODE (TREE_TYPE (pval)), size_rtx,
  5216.               TYPE_ALIGN (TREE_TYPE (pval)) / BITS_PER_UNIT,
  5217.               arg->partial, arg->reg, excess, argblock,
  5218.               ARGS_SIZE_RTX (arg->offset));
  5219.     }
  5220.  
  5221.   /* Once we have pushed something, pops can't safely
  5222.      be deferred during the rest of the arguments.  */
  5223.   NO_DEFER_POP;
  5224. }
  5225.  
  5226. /* Expand conditional expressions.  */
  5227.  
  5228. /* Generate code to evaluate EXP and jump to LABEL if the value is zero.
  5229.    LABEL is an rtx of code CODE_LABEL, in this function and all the
  5230.    functions here.  */
  5231.  
  5232. void
  5233. jumpifnot (exp, label)
  5234.      tree exp;
  5235.      rtx label;
  5236. {
  5237.   do_jump (exp, label, 0);
  5238. }
  5239.  
  5240. /* Generate code to evaluate EXP and jump to LABEL if the value is nonzero.  */
  5241.  
  5242. void
  5243. jumpif (exp, label)
  5244.      tree exp;
  5245.      rtx label;
  5246. {
  5247.   do_jump (exp, 0, label);
  5248. }
  5249.  
  5250. /* Generate code to evaluate EXP and jump to IF_FALSE_LABEL if
  5251.    the result is zero, or IF_TRUE_LABEL if the result is one.
  5252.    Either of IF_FALSE_LABEL and IF_TRUE_LABEL may be zero,
  5253.    meaning fall through in that case.
  5254.  
  5255.    This function is responsible for optimizing cases such as
  5256.    &&, || and comparison operators in EXP.  */
  5257.  
  5258. void
  5259. do_jump (exp, if_false_label, if_true_label)
  5260.      tree exp;
  5261.      rtx if_false_label, if_true_label;
  5262. {
  5263.   register enum tree_code code = TREE_CODE (exp);
  5264.   /* Some cases need to create a label to jump to
  5265.      in order to properly fall through.
  5266.      These cases set DROP_THROUGH_LABEL nonzero.  */
  5267.   rtx drop_through_label = 0;
  5268.   rtx temp;
  5269.   rtx comparison = 0;
  5270.  
  5271.   emit_queue ();
  5272.  
  5273.   switch (code)
  5274.     {
  5275.     case ERROR_MARK:
  5276.       break;
  5277.  
  5278.     case INTEGER_CST:
  5279.       temp = integer_zerop (exp) ? if_false_label : if_true_label;
  5280.       if (temp)
  5281.     emit_jump (temp);
  5282.       break;
  5283.  
  5284.     case ADDR_EXPR:
  5285.       /* The address of something can never be zero.  */
  5286.       if (if_true_label)
  5287.     emit_jump (if_true_label);
  5288.       break;
  5289.  
  5290.     case NOP_EXPR:
  5291.       do_jump (TREE_OPERAND (exp, 0), if_false_label, if_true_label);
  5292.       break;
  5293.  
  5294.     case TRUTH_NOT_EXPR:
  5295.       do_jump (TREE_OPERAND (exp, 0), if_true_label, if_false_label);
  5296.       break;
  5297.  
  5298.     case TRUTH_ANDIF_EXPR:
  5299.       if (if_false_label == 0)
  5300.     if_false_label = drop_through_label = gen_label_rtx ();
  5301.       do_jump (TREE_OPERAND (exp, 0), if_false_label, 0);
  5302.       do_jump (TREE_OPERAND (exp, 1), if_false_label, if_true_label);
  5303.       break;
  5304.  
  5305.     case TRUTH_ORIF_EXPR:
  5306.       if (if_true_label == 0)
  5307.     if_true_label = drop_through_label = gen_label_rtx ();
  5308.       do_jump (TREE_OPERAND (exp, 0), 0, if_true_label);
  5309.       do_jump (TREE_OPERAND (exp, 1), if_false_label, if_true_label);
  5310.       break;
  5311.  
  5312.     case COMPOUND_EXPR:
  5313.       expand_expr (TREE_OPERAND (exp, 0), const0_rtx, VOIDmode, 0);
  5314.       emit_queue ();
  5315.       do_jump (TREE_OPERAND (exp, 1), if_false_label, if_true_label);
  5316.       break;
  5317.  
  5318.     case COND_EXPR:
  5319.       {
  5320.     register rtx label1 = gen_label_rtx ();
  5321.     drop_through_label = gen_label_rtx ();
  5322.     do_jump (TREE_OPERAND (exp, 0), label1, 0);
  5323.     /* Now the THEN-expression.  */
  5324.     do_jump (TREE_OPERAND (exp, 1),
  5325.          if_false_label ? if_false_label : drop_through_label,
  5326.          if_true_label ? if_true_label : drop_through_label);
  5327.     emit_label (label1);
  5328.     /* Now the ELSE-expression.  */
  5329.     do_jump (TREE_OPERAND (exp, 2),
  5330.          if_false_label ? if_false_label : drop_through_label,
  5331.          if_true_label ? if_true_label : drop_through_label);
  5332.       }
  5333.       break;
  5334.  
  5335.     case EQ_EXPR:
  5336. #if defined( DSP56000 )
  5337.       /* due to the un-unsigned features of this chip, we need an unsigned
  5338.      version of EVERY conditional. */
  5339.       comparison = compare (exp, EQ, EQU, EQ, EQU);
  5340. #else
  5341.       comparison = compare (exp, EQ, EQ, EQ, EQ);
  5342. #endif
  5343.       break;
  5344.  
  5345.     case NE_EXPR:
  5346. #if defined( DSP56000 )
  5347.       comparison = compare (exp, NE, NEU, NE, NEU);
  5348. #else
  5349.       comparison = compare (exp, NE, NE, NE, NE);
  5350. #endif
  5351.       break;
  5352.  
  5353.     case LT_EXPR:
  5354.       comparison = compare (exp, LT, LTU, GT, GTU);
  5355.       break;
  5356.  
  5357.     case LE_EXPR:
  5358.       comparison = compare (exp, LE, LEU, GE, GEU);
  5359.       break;
  5360.  
  5361.     case GT_EXPR:
  5362.       comparison = compare (exp, GT, GTU, LT, LTU);
  5363.       break;
  5364.  
  5365.     case GE_EXPR:
  5366.       comparison = compare (exp, GE, GEU, LE, LEU);
  5367.       break;
  5368.  
  5369.     default:
  5370.       temp = expand_expr (exp, 0, VOIDmode, 0);
  5371.       /* Copy to register to avoid generating bad insns by cse
  5372.      from (set (mem ...) (arithop))  (set (cc0) (mem ...)).  */
  5373.       if (!cse_not_expected && GET_CODE (temp) == MEM)
  5374.     temp = copy_to_reg (temp);
  5375.       do_pending_stack_adjust ();
  5376.       {
  5377.     rtx zero = CONST0_RTX (GET_MODE (temp));
  5378.  
  5379.     if (GET_CODE (temp) == CONST_INT)
  5380.       comparison = compare_constants (NE, 0,
  5381.                       INTVAL (temp), 0, BITS_PER_WORD);
  5382.     else if (GET_MODE (temp) != VOIDmode)
  5383.       comparison = compare1 (temp, zero, NE, NE, 0, GET_MODE (temp));
  5384.     else
  5385.       abort ();
  5386.       }
  5387.     }
  5388.  
  5389.   /* Do any postincrements in the expression that was tested.  */
  5390.   emit_queue ();
  5391.  
  5392.   /* If COMPARISON is nonzero here, it is an rtx that can be substituted
  5393.      straight into a conditional jump instruction as the jump condition.
  5394.      Otherwise, all the work has been done already.  */
  5395.  
  5396.   if (comparison == const1_rtx)
  5397.     {
  5398.       if (if_true_label)
  5399.     emit_jump (if_true_label);
  5400.     }
  5401.   else if (comparison == const0_rtx)
  5402.     {
  5403.       if (if_false_label)
  5404.     emit_jump (if_false_label);
  5405.     }
  5406.   else if (comparison)
  5407.     {
  5408.       if (if_true_label)
  5409.     {
  5410.       if (bcc_gen_fctn[(int) GET_CODE (comparison)] != 0)
  5411.         emit_jump_insn ((*bcc_gen_fctn[(int) GET_CODE (comparison)]) (if_true_label));
  5412.       else
  5413.         abort ();
  5414.  
  5415.       if (if_false_label)
  5416.         emit_jump (if_false_label);
  5417.     }
  5418.       else if (if_false_label)
  5419.     {
  5420.       rtx pat;
  5421.  
  5422.       if (bcc_gen_fctn[(int) GET_CODE (comparison)] == 0)
  5423.         abort ();
  5424.  
  5425.       pat = (*bcc_gen_fctn[(int) GET_CODE (comparison)]) (if_false_label);
  5426.       /* Now invert the sense of the jump by exchanging the two arms
  5427.          of each IF_THEN_ELSE.  Note that inverting the condition
  5428.          would be incorrect for IEEE floating point with nans!  */
  5429.       if (GET_CODE (pat) == SEQUENCE)
  5430.         {
  5431.           int i;
  5432.           /* We can invert a sequence if the only jump is at the end.  */
  5433.           for (i = 0; i < (int) (XVECLEN (pat, 0) - 1); i++)
  5434.         if (GET_CODE (XVECEXP (pat, 0, i)) == JUMP_INSN)
  5435.           abort ();
  5436.           invert_exp (PATTERN (XVECEXP (pat, 0, XVECLEN (pat, 0) - 1)),
  5437.               0, 0);
  5438.         }
  5439.       else
  5440.         invert_exp (pat, 0, 0);
  5441.  
  5442.       emit_jump_insn (pat);
  5443.     }
  5444.     }
  5445.  
  5446.   if (drop_through_label)
  5447.     emit_label (drop_through_label);
  5448. }
  5449.  
  5450. /* Compare two integer constant rtx's, OP0 and OP1.
  5451.    The comparison operation is OPERATION.
  5452.    Return an rtx representing the value 1 or 0.
  5453.    WIDTH is the width in bits that is significant.  */
  5454.  
  5455. static rtx
  5456. compare_constants (operation, unsignedp, op0, op1, width)
  5457.      enum rtx_code operation;
  5458.      int unsignedp;
  5459.      int op0, op1;
  5460.      int width;
  5461. {
  5462.   int val;
  5463.  
  5464.   /* Sign-extend or zero-extend the operands to a full word
  5465.      from an initial width of WIDTH bits.  */
  5466.   if (width < HOST_BITS_PER_INT)
  5467.     {
  5468.       op0 &= (1 << width) - 1;
  5469.       op1 &= (1 << width) - 1;
  5470.  
  5471.       if (! unsignedp)
  5472.     {
  5473.       if (op0 & (1 << (width - 1)))
  5474.         op0 |= ((-1) << width);
  5475.       if (op1 & (1 << (width - 1)))
  5476.         op1 |= ((-1) << width);
  5477.     }
  5478.     }
  5479.  
  5480.   switch (operation)
  5481.     {
  5482.     case EQ:
  5483.       val = op0 == op1;
  5484.       break;
  5485.  
  5486.     case NE:
  5487.       val = op0 != op1;
  5488.       break;
  5489.  
  5490.     case GT:
  5491.     case GTU:
  5492.       val = op0 > op1;
  5493.       break;
  5494.  
  5495.     case LT:
  5496.     case LTU:
  5497.       val = op0 < op1;
  5498.       break;
  5499.  
  5500.     case GE:
  5501.     case GEU:
  5502.       val = op0 >= op1;
  5503.       break;
  5504.  
  5505.     case LE:
  5506.     case LEU:
  5507.       val = op0 <= op1;
  5508.     }
  5509.  
  5510.   return val ? const1_rtx : const0_rtx;
  5511. }
  5512.  
  5513. /* Generate code for a comparison expression EXP
  5514.    (including code to compute the values to be compared)
  5515.    and set (CC0) according to the result.
  5516.    SIGNED_FORWARD should be the rtx operation for this comparison for
  5517.    signed data; UNSIGNED_FORWARD, likewise for use if data is unsigned.
  5518.    SIGNED_REVERSE and UNSIGNED_REVERSE are used if it is desirable
  5519.    to interchange the operands for the compare instruction.
  5520.  
  5521.    We force a stack adjustment unless there are currently
  5522.    things pushed on the stack that aren't yet used.  */
  5523.  
  5524. static rtx
  5525. compare (exp, signed_forward, unsigned_forward,
  5526.      signed_reverse, unsigned_reverse)
  5527.      register tree exp;
  5528.      enum rtx_code signed_forward, unsigned_forward;
  5529.      enum rtx_code signed_reverse, unsigned_reverse;
  5530. {
  5531.  
  5532.   register rtx op0 = expand_expr (TREE_OPERAND (exp, 0), 0, VOIDmode, 0);
  5533.   register rtx op1 = expand_expr (TREE_OPERAND (exp, 1), 0, VOIDmode, 0);
  5534.   register enum machine_mode mode = GET_MODE (op0);
  5535.   int unsignedp;
  5536.  
  5537.   /* If one operand is 0, make it the second one.  */
  5538.  
  5539.   if (op0 == const0_rtx
  5540.       || (GET_MODE_CLASS (mode) == MODE_FLOAT && op0 == CONST0_RTX (mode)))
  5541.     {
  5542.       rtx tem = op0;
  5543.       op0 = op1;
  5544.       op1 = tem;
  5545.       signed_forward = signed_reverse;
  5546.       unsigned_forward = unsigned_reverse;
  5547.     }
  5548.  
  5549.   if (flag_force_mem)
  5550.     {
  5551.       op0 = force_not_mem (op0);
  5552.       op1 = force_not_mem (op1);
  5553.     }
  5554.  
  5555.   do_pending_stack_adjust ();
  5556.  
  5557.   unsignedp = (TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp, 0)))
  5558.            || TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp, 1))));
  5559.  
  5560.   if (GET_CODE (op0) == CONST_INT && GET_CODE (op1) == CONST_INT)
  5561.     return compare_constants (signed_forward, unsignedp,
  5562.                   INTVAL (op0), INTVAL (op1),
  5563.                   GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (TREE_OPERAND (exp, 0)))));
  5564.  
  5565.   emit_cmp_insn (op0, op1,
  5566.          (mode == BLKmode) ? expr_size (TREE_OPERAND (exp, 0)) : 0,
  5567.          unsignedp,
  5568.          TYPE_ALIGN (TREE_TYPE (exp)) / BITS_PER_UNIT);
  5569.  
  5570.   return gen_rtx ((unsignedp ? unsigned_forward : signed_forward),
  5571.           VOIDmode, cc0_rtx, const0_rtx);
  5572. }
  5573.  
  5574. /* Like compare but expects the values to compare as two rtx's.
  5575.    The decision as to signed or unsigned comparison must be made by the caller.
  5576.    BLKmode is not allowed.  */
  5577.  
  5578. static rtx
  5579. compare1 (op0, op1, forward_op, reverse_op, unsignedp, mode)
  5580.      register rtx op0, op1;
  5581.      enum rtx_code forward_op, reverse_op;
  5582.      int unsignedp;
  5583.      enum machine_mode mode;
  5584. {
  5585.   /* If one operand is 0, make it the second one.  */
  5586.  
  5587.   if (op0 == const0_rtx
  5588.       || (GET_MODE_CLASS (mode) == MODE_FLOAT && op0 == CONST0_RTX (mode)))
  5589.     {
  5590.       rtx tem = op0;
  5591.       op0 = op1;
  5592.       op1 = tem;
  5593.       forward_op = reverse_op;
  5594.     }
  5595.  
  5596.   if (flag_force_mem)
  5597.     {
  5598.       op0 = force_not_mem (op0);
  5599.       op1 = force_not_mem (op1);
  5600.     }
  5601.  
  5602.   do_pending_stack_adjust ();
  5603.  
  5604.   if (GET_CODE (op0) == CONST_INT && GET_CODE (op1) == CONST_INT)
  5605.     return compare_constants (forward_op, unsignedp,
  5606.                   INTVAL (op0), INTVAL (op1),
  5607.                   GET_MODE_BITSIZE (mode));
  5608.  
  5609.   emit_cmp_insn (op0, op1, 0, unsignedp, 0);
  5610.  
  5611.   return gen_rtx (forward_op, VOIDmode, cc0_rtx, const0_rtx);
  5612. }
  5613.  
  5614. /* Generate code to calculate EXP using a store-flag instruction
  5615.    and return an rtx for the result.
  5616.    If TARGET is nonzero, store the result there if convenient.
  5617.  
  5618.    Return zero if there is no suitable set-flag instruction
  5619.    available on this machine.  */
  5620.  
  5621. static rtx
  5622. do_store_flag (exp, target, mode)
  5623.      tree exp;
  5624.      rtx target;
  5625.      enum machine_mode mode;
  5626. {
  5627.   register enum tree_code code = TREE_CODE (exp);
  5628.   register rtx comparison = 0;
  5629.   enum machine_mode compare_mode;
  5630.   rtx prev_insn = get_last_insn ();
  5631.   enum insn_code icode;
  5632.  
  5633.   switch (code)
  5634.     {
  5635. #ifdef HAVE_seq
  5636.     case EQ_EXPR:
  5637. #if defined( DSP56000 )
  5638.       if (HAVE_seq && HAVE_sequ)
  5639.     {
  5640.       comparison = compare (exp, EQ, EQU, EQ, EQU);
  5641. #else
  5642.       if (HAVE_seq)
  5643.     {
  5644.       comparison = compare (exp, EQ, EQ, EQ, EQ);
  5645. #endif
  5646.       icode = CODE_FOR_seq;
  5647.       compare_mode = insn_operand_mode[(int) CODE_FOR_seq][0];
  5648.     }
  5649.       break;
  5650. #endif
  5651.  
  5652. #ifdef HAVE_sne
  5653.     case NE_EXPR:
  5654. #if defined( DSP56000 )
  5655.       if (HAVE_sne && HAVE_sneu)
  5656.     {
  5657.       comparison = compare (exp, NE, NEU, NE, NEU);
  5658. #else
  5659.       if (HAVE_sne)
  5660.     {
  5661.       comparison = compare (exp, NE, NE, NE, NE);
  5662. #endif
  5663.       icode = CODE_FOR_sne;
  5664.       compare_mode = insn_operand_mode[(int) CODE_FOR_sne][0];
  5665.     }
  5666.       break;
  5667. #endif
  5668.  
  5669. #if defined (HAVE_slt) && defined (HAVE_sltu) && defined (HAVE_sgt) && defined (HAVE_sgtu)
  5670.     case LT_EXPR:
  5671.       if (HAVE_slt && HAVE_sltu && HAVE_sgt && HAVE_sgtu)
  5672.     {
  5673.       comparison = compare (exp, LT, LTU, GT, GTU);
  5674.       icode = CODE_FOR_slt;
  5675.       compare_mode = insn_operand_mode[(int) CODE_FOR_slt][0];
  5676.     }
  5677.       break;
  5678.  
  5679.     case GT_EXPR:
  5680.       if (HAVE_slt && HAVE_sltu && HAVE_sgt && HAVE_sgtu)
  5681.     {
  5682.       comparison = compare (exp, GT, GTU, LT, LTU);
  5683.       icode = CODE_FOR_slt;
  5684.       compare_mode = insn_operand_mode[(int) CODE_FOR_slt][0];
  5685.     }
  5686.       break;
  5687. #endif
  5688.  
  5689. #if defined (HAVE_sle) && defined (HAVE_sleu) && defined (HAVE_sge) && defined (HAVE_sgeu)
  5690.     case LE_EXPR:
  5691.       if (HAVE_sle && HAVE_sleu && HAVE_sge && HAVE_sgeu)
  5692.     {
  5693.       comparison = compare (exp, LE, LEU, GE, GEU);
  5694.       icode = CODE_FOR_sle;
  5695.       compare_mode = insn_operand_mode[(int) CODE_FOR_sle][0];
  5696.     }
  5697.       break;
  5698.  
  5699.     case GE_EXPR:
  5700.       if (HAVE_sle && HAVE_sleu && HAVE_sge && HAVE_sgeu)
  5701.     {
  5702.       comparison = compare (exp, GE, GEU, LE, LEU);
  5703.       icode = CODE_FOR_sle;
  5704.       compare_mode = insn_operand_mode[(int) CODE_FOR_sle][0];
  5705.     }
  5706.       break;
  5707. #endif
  5708.     }
  5709.   if (comparison == 0)
  5710.     return 0;
  5711.  
  5712.   if (target == 0 || GET_MODE (target) != mode
  5713.       /* Don't use specified target unless the insn can handle it.  */
  5714.       || ! (*insn_operand_predicate[(int) icode][0]) (target, mode)
  5715.       /* When modes don't match, don't use specified target,
  5716.      because it might be the same as an operand,
  5717.      and then the CLOBBER output below would screw up.  */
  5718.       || (mode != compare_mode && GET_CODE (comparison) != CONST_INT))
  5719.     target = gen_reg_rtx (mode);
  5720.  
  5721.   /* Store the comparison in its proper mode.  */
  5722.   if (GET_CODE (comparison) == CONST_INT)
  5723.     emit_move_insn (target, comparison);
  5724.   else if (GET_MODE (target) != compare_mode)
  5725.     {
  5726.       /* We want a different mode: store result in its natural mode.
  5727.      Combine the mode conversion with the truncation we must do anyway.  */
  5728.       /* Put a CLOBBER before the compare, so we don't come between
  5729.      the compare and the insn that uses the result.  */
  5730.       emit_insn_after (gen_rtx (CLOBBER, VOIDmode, target), prev_insn);
  5731.       emit_insn ((*setcc_gen_fctn[(int) GET_CODE (comparison)])
  5732.          (gen_rtx (SUBREG, compare_mode, target, 0)));
  5733.       /* If the desired mode is wider than what we got,
  5734.      use an AND to convert it, but not if we will do one anyway.  */
  5735. #if STORE_FLAG_VALUE == 1
  5736.       if (GET_MODE_SIZE (mode) > GET_MODE_SIZE (compare_mode))
  5737.     expand_bit_and (mode, target, const1_rtx, target);
  5738. #endif
  5739.     }
  5740.   else
  5741.     emit_insn ((*setcc_gen_fctn[(int) GET_CODE (comparison)]) (target));
  5742.  
  5743. #if STORE_FLAG_VALUE != 1
  5744. #if STORE_FLAG_VALUE & 1
  5745.   expand_bit_and (mode, target, const1_rtx, target);
  5746. #else
  5747.   expand_shift (RSHIFT_EXPR, mode, target,
  5748.         build_int_2 (GET_MODE_BITSIZE (mode) - 1, 0),
  5749.         target, TRUE);
  5750. #endif
  5751. #endif
  5752.   return target;
  5753. }
  5754.  
  5755. /* Generate a tablejump instruction (used for switch statements).  */
  5756.  
  5757. #ifdef HAVE_tablejump
  5758.  
  5759. /* INDEX is the value being switched on, with the lowest value
  5760.    in the table already subtracted.
  5761.    RANGE is the length of the jump table.
  5762.    TABLE_LABEL is a CODE_LABEL rtx for the table itself.
  5763.  
  5764.    DEFAULT_LABEL is a CODE_LABEL rtx to jump to if the
  5765.    index value is out of range.  */
  5766.  
  5767. void
  5768. do_tablejump (index, range, table_label, default_label)
  5769.      rtx index, range, table_label, default_label;
  5770. {
  5771.   register rtx temp;
  5772.  
  5773.   emit_cmp_insn (range, index, 0, 0, 0);
  5774.   emit_jump_insn (gen_bltu (default_label));
  5775.   /* If flag_force_addr were to affect this address
  5776.      it could interfere with the tricky assumptions made
  5777.      about addresses that contain label-refs,
  5778.      which may be valid only very near the tablejump itself.  */
  5779.   index = memory_address_noforce
  5780.     (CASE_VECTOR_MODE,
  5781.      gen_rtx (PLUS, Pmode,
  5782.           gen_rtx (MULT, Pmode, index,
  5783.                gen_rtx (CONST_INT, VOIDmode,
  5784.                 GET_MODE_SIZE (CASE_VECTOR_MODE))),
  5785.           gen_rtx (LABEL_REF, VOIDmode, table_label)));
  5786.   temp = gen_reg_rtx (CASE_VECTOR_MODE);
  5787.   convert_move (temp, gen_rtx (MEM, CASE_VECTOR_MODE, index), 0);
  5788.  
  5789.   emit_jump_insn (gen_tablejump (temp, table_label));
  5790. }
  5791.  
  5792. #endif /* HAVE_tablejump */
  5793.